copyWith method
SendChatAction
copyWith({
- int? chatId,
- MessageTopic? topicId,
- String? businessConnectionId,
- ChatAction? action,
Implementation
SendChatAction copyWith({
int? chatId,
MessageTopic? topicId,
String? businessConnectionId,
ChatAction? action,
}) => SendChatAction(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
action: action ?? this.action,
);