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