months method
Format when time is in months
Implementation
@override
String months(int months) {
if (months == 1) {
return '1 மாதம்';
} else if (months > 1 && months < 11) {
return '~$months மாதங்கள்';
} else {
return '$months மாதங்கள்';
}
}