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