numSelect method
The number of messages select
In en, this message translates to: '{num, plural, zero {Select Messages} other {{num} Selected}}'
Implementation
@override
String numSelect(int num) {
String _temp0 = intl.Intl.pluralLogic(
num,
locale: localeName,
other: '$num Selected',
zero: 'Select Messages',
);
return '$_temp0';
}