getMonthShortName static method
Returns the abbreviated name of the given month (1-12), or null if
month is null or invalid.
Audited: 2026-06-12 11:26 EDT
Implementation
@useResult
static String? getMonthShortName(int? month) => month == null ? null : monthShortNames[month];