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