copyWith method
Implementation
SendChatAction copyWith({
int? chatId,
int? messageThreadId,
ChatAction? action,
}) => SendChatAction(
chatId: chatId ?? this.chatId,
messageThreadId: messageThreadId ?? this.messageThreadId,
action: action ?? this.action,
);