numChats method

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

The number of selected chats

In en, this message translates to: '{num, plural, zero {No Chat Selected} one {1 Chat} other {{num} Chats}}'

Implementation

@override
String numChats(int num) {
  String _temp0 = intl.Intl.pluralLogic(
    num,
    locale: localeName,
    other: '$num Chats',
    one: '1 Chat',
    zero: 'No Chat Selected',
  );
  return '$_temp0';
}