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: 'days',
    one: 'day',
    zero: 'days',
  );
  return '$_temp0';
}