memberReadCount method
The number of message read members
In en, this message translates to: '{num, plural, zero {No member read} one {1 member read} other {{num} members read}}'
Implementation
@override
String memberReadCount(int num) {
String _temp0 = intl.Intl.pluralLogic(
num,
locale: localeName,
other: '$num members read',
one: '1 member read',
zero: 'No member read',
);
return '$_temp0';
}