characters_remaining method
No description provided for @characters_remaining.
In en, this message translates to: '{count, plural, one{{count} character remaining} other{{count} characters remaining}}'
Implementation
@override
String characters_remaining(int count) {
String _temp0 = intl.Intl.pluralLogic(
count,
locale: localeName,
other: '$count characters remaining',
one: '$count character remaining',
);
return '$_temp0';
}