nonFinalFormatters property
Map<FormatterToken, FormatterTokenFn>
get
nonFinalFormatters
Implementation
Map<FormatterToken, FormatterTokenFn> get nonFinalFormatters => {
FormatterToken.dd: (dateTime) =>
weekdayName[dateTime.weekday]!.substring(0, 2),
FormatterToken.ddd: (dateTime) =>
weekdayName[dateTime.weekday]!.substring(0, 3),
FormatterToken.dddd: (dateTime) => weekdayName[dateTime.weekday]!,
};