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: 'رطل',
one: 'رطل',
zero: 'رطل',
);
return '$_temp0';
}