getLocaleMonths static method
Get locale month array
Implementation
static List<String>? getLocaleMonths(DateTimePickerLocale locale,
[bool isFull = true]) {
_StringsI18n i18n = datePickerI18n[locale] ??
datePickerI18n[DATETIME_PICKER_LOCALE_DEFAULT]!;
if (isFull) {
List<String> months = i18n.getMonths();
return months;
}
List<String>? months = i18n.getMonthsShort();
if (months != null && months.isNotEmpty && months.length == 12) {
return months;
}
return i18n.getMonthsShort();
}