newMsgCount method

  1. @override
String newMsgCount(
  1. int num
)
override

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