ounce method

  1. @override
String ounce(
  1. num value
)
override

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';
}