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