numThreadQuote method

  1. @override
String numThreadQuote(
  1. int num
)
override

The number of Thread Quotes

In en, this message translates to: '{num, plural, one {{num} Thread Quote} other {{num} Thread Quotes}}'

Implementation

@override
String numThreadQuote(int num) {
  String _temp0 = intl.Intl.pluralLogic(
    num,
    locale: localeName,
    other: '$num Thread Quotes',
    one: '$num Thread Quote',
  );
  return '$_temp0';
}