getMonthShort static method
Implementation
static String getMonthShort(int month) {
const months = [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
];
return months[month - 1];
}