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