numChats method
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 채팅',
one: '1 채팅',
zero: '선택된 채팅 없음',
);
return '$_temp0';
}