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