getMonthsNames static method
Implementation
static List<String> getMonthsNames() {
return [
Localization.getValue('january'),
Localization.getValue('february'),
Localization.getValue('march'),
Localization.getValue('april'),
Localization.getValue('may'),
Localization.getValue('june'),
Localization.getValue('july'),
Localization.getValue('august'),
Localization.getValue('september'),
Localization.getValue('october'),
Localization.getValue('november'),
Localization.getValue('december'),
];
}