newMsgCount method
The number of New Messages
In en, this message translates to: '{num, plural, one {A New Message} other {{num} New Messages}}'
Implementation
@override
String newMsgCount(int num) {
String _temp0 = intl.Intl.pluralLogic(
num,
locale: localeName,
other: '$num 개의 새 메시지',
one: '새 메시지',
);
return '$_temp0';
}