gallons method

  1. @override
String gallons(
  1. num volume
)
override

No description provided for @gallons.

In en, this message translates to: '{volume,plural, =0{gallons}=1{gallon}other{gallons}}'

Implementation

@override
String gallons(num volume) {
  String _temp0 = intl.Intl.pluralLogic(
    volume,
    locale: localeName,
    other: 'جالون',
    one: 'جالون',
    zero: 'جالون',
  );
  return '$_temp0';
}