decade method

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

No description provided for @decade.

In en, this message translates to: '{time,plural, =0{decades}=1{decade}other{decades}}'

Implementation

@override
String decade(num time) {
  String _temp0 = intl.Intl.pluralLogic(
    time,
    locale: localeName,
    other: 'عقود',
    one: 'عقد',
    zero: 'عقود',
  );
  return '$_temp0';
}