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