cubicFoot method

  1. @override
String cubicFoot(
  1. num volume
)
override

No description provided for @cubicFoot.

In en, this message translates to: '{volume,plural, =0{cubic foot}=1{cubic foot}other{cubic foot}}'

Implementation

@override
String cubicFoot(num volume) {
  String _temp0 = intl.Intl.pluralLogic(
    volume,
    locale: localeName,
    other: 'cubic foot',
    one: 'cubic foot',
    zero: 'cubic foot',
  );
  return '$_temp0';
}