getMonthShortName static method

  1. @useResult
String? getMonthShortName(
  1. int? month
)

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];