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