nmonth method

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

No description provided for @nmonth.

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

Implementation

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