nday method

  1. @override
String nday(
  1. num count
)
override

No description provided for @nday.

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

Implementation

@override
String nday(num count) {
  String _temp0 = intl.Intl.pluralLogic(
    count,
    locale: localeName,
    other: '$count tage',
    one: '1 tag',
  );
  return '$_temp0';
}