pounds method

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

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