knots method
No description provided for @knots.
In en, this message translates to: '{value,plural, =0{knots}=1{knot}other{knots}}'
Implementation
@override
String knots(num value) {
String _temp0 = intl.Intl.pluralLogic(
value,
locale: localeName,
other: 'عُقدة',
one: 'عُقدة',
zero: 'عُقدة',
);
return '$_temp0';
}