celsius method

  1. @override
String celsius(
  1. num value
)
override

No description provided for @celsius.

In en, this message translates to: '{value,plural, =0{celsius}=1{celsius}other{celsius}}'

Implementation

@override
String celsius(num value) {
  String _temp0 = intl.Intl.pluralLogic(
    value,
    locale: localeName,
    other: 'درجة مئوية',
    one: 'درجة مئوية',
    zero: 'درجة مئوية',
  );
  return '$_temp0';
}