inches method

  1. @override
String inches(
  1. num length
)
override

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