copyWith method
GetChatMessageCount
copyWith({
- int? chatId,
- MessageTopic? topicId,
- SearchMessagesFilter? filter,
- bool? returnLocal,
Implementation
GetChatMessageCount copyWith({
int? chatId,
MessageTopic? topicId,
SearchMessagesFilter? filter,
bool? returnLocal,
}) => GetChatMessageCount(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
filter: filter ?? this.filter,
returnLocal: returnLocal ?? this.returnLocal,
);