getMonth property
String
get
getMonth
Get Month name by number
Implementation
String get getMonth {
Map months = {
"1": "Jan",
"2": "Feb",
"3": "Mar",
"4": "Apr",
"5": "May",
"6": "June",
"7": "Jul",
"8": "Aug",
"9": "Sep",
"10": "Oct",
"11": "Nov",
"12": "Dec",
};
return months[this];
}