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