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