millisecond method

  1. @override
String millisecond(
  1. num time
)
override

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';
}