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