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