ChatFilter constructor
const
ChatFilter({
- required String title,
- required String iconName,
- required List<
int> pinnedChatIds, - required List<
int> includedChatIds, - required List<
int> excludedChatIds, - required bool excludeMuted,
- required bool excludeRead,
- required bool excludeArchived,
- required bool includeContacts,
- required bool includeNonContacts,
- required bool includeBots,
- required bool includeGroups,
- required bool includeChannels,
- dynamic extra,
- int? clientId,
Represents a filter of user chats
Implementation
const ChatFilter({
required this.title,
required this.iconName,
required this.pinnedChatIds,
required this.includedChatIds,
required this.excludedChatIds,
required this.excludeMuted,
required this.excludeRead,
required this.excludeArchived,
required this.includeContacts,
required this.includeNonContacts,
required this.includeBots,
required this.includeGroups,
required this.includeChannels,
this.extra,
this.clientId,
});