decade method
No description provided for @decade.
In en, this message translates to: '{time,plural, =0{decades}=1{decade}other{decades}}'
Implementation
@override
String decade(num time) {
String _temp0 = intl.Intl.pluralLogic(
time,
locale: localeName,
other: 'عقود',
one: 'عقد',
zero: 'عقود',
);
return '$_temp0';
}