formatShortMonthDay method
Formats the month and day of the given date.
Examples:
- US English: Feb 21
- Russian: 21 февр.
Implementation
@override
String formatShortMonthDay(DateTime date) {
final String month = _shortMonths[date.month - 1];
return '$month ${date.day}';
}