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人のメンバーが読んだ',
one: '1人のメンバーが読んだ',
zero: 'メンバーが読んでいません',
);
return '$_temp0';
}