copyWith method
Implementation
UpdateTopicMessageCount copyWith({
int? chatId,
MessageTopic? topicId,
int? messageCount,
}) => UpdateTopicMessageCount(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
messageCount: messageCount ?? this.messageCount,
);