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