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