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