tons method

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

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';
}