second method

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

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