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