copyWith method
Implementation
UpdateBusinessMessagesDeleted copyWith({
String? connectionId,
int? chatId,
List<int>? messageIds,
}) => UpdateBusinessMessagesDeleted(
connectionId: connectionId ?? this.connectionId,
chatId: chatId ?? this.chatId,
messageIds: messageIds ?? this.messageIds,
);