monthCode property
Returns the month code for this date. Typically something like "M01", "M02", but can be more complicated for lunar calendars.
See the Rust documentation for standard_code
for more information.
Additional information: 1
Implementation
String get monthCode {
final write = _Write();
_icu4x_Date_month_code_mv1(_ffi, write._ffi);
return write.finalize();
}