monthName method
Gets the month name for a given month number (1-12).
Implementation
String monthName(int month) {
if (month < 1 || month > 12) {
throw ArgumentError.value(month, 'month', 'Must be between 1 and 12');
}
return _locale.months[month - 1];
}