month method
No description provided for @month.
In en, this message translates to: '{time,plural, =0{month}=1{month}other{months}}'
Implementation
@override
String month(num time) {
String _temp0 = intl.Intl.pluralLogic(
time,
locale: localeName,
other: 'شهر',
one: 'شهر',
zero: 'شهر',
);
return '$_temp0';
}