getMonthShortName static method

String? getMonthShortName(
  1. int? month
)

Gets the abbreviated name of a month.

Implementation

static String? getMonthShortName(int? month) => month == null ? null : monthShortNames[month];