pounds method
No description provided for @pounds.
In en, this message translates to: '{value,plural, =0{pounds}=1{pound}other{pounds}}'
Implementation
@override
String pounds(num value) {
String _temp0 = intl.Intl.pluralLogic(
value,
locale: localeName,
other: 'pounds',
one: 'pound',
zero: 'pounds',
);
return '$_temp0';
}