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