getShortMonthText function

String getShortMonthText(
  1. int month
)

Implementation

String getShortMonthText(int month) {
  return _monthToShortText[month] ?? '';
}