day method

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

No description provided for @day.

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

Implementation

@override
String day(num time) {
  String _temp0 = intl.Intl.pluralLogic(
    time,
    locale: localeName,
    other: 'يوم',
    one: 'ايام',
    zero: 'يوم',
  );
  return '$_temp0';
}