month method

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

No description provided for @month.

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

Implementation

@override
String month(num time) {
  String _temp0 = intl.Intl.pluralLogic(
    time,
    locale: localeName,
    other: 'شهر',
    one: 'شهر',
    zero: 'شهر',
  );
  return '$_temp0';
}