hour method

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

No description provided for @hour.

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

Implementation

@override
String hour(num time) {
  String _temp0 = intl.Intl.pluralLogic(
    time,
    locale: localeName,
    other: 'ساعة',
    one: 'ساعة',
    zero: 'ساعة',
  );
  return '$_temp0';
}