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