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