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