formattersForMonthNames property
Overrides:
MMM
and MMMM
Implementation
Map<FormatterToken, FormatterTokenFn> get formattersForMonthNames => {
if (monthNamesMin != null)
FormatterToken.MM: (dateTime) => monthNamesMin![dateTime.month]!,
FormatterToken.MMM: (dateTime) => monthNamesShort[dateTime.month]!,
FormatterToken.MMMM: (dateTime) => monthNames[dateTime.month]!,
};