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 New Messages',
one: 'A New Message',
);
return '$_temp0';
}