copyWith method
Implementation
SetChatDraftMessage copyWith({
int? chatId,
MessageTopic? topicId,
DraftMessage? draftMessage,
}) => SetChatDraftMessage(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
draftMessage: draftMessage ?? this.draftMessage,
);