nyear method

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

No description provided for @nyear.

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

Implementation

@override
String nyear(num count) {
  String _temp0 = intl.Intl.pluralLogic(
    count,
    locale: localeName,
    other: '$count años',
    one: '1 año',
  );
  return '$_temp0';
}