getMonthLongName static method

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

Returns the full name of the given month (1-12), or null if invalid. Audited: 2026-06-12 11:26 EDT

Implementation

@useResult
static String? getMonthLongName(int month) => monthLongNames[month];