copyWith method

UpdateBusinessMessagesDeleted copyWith({
  1. String? connectionId,
  2. int? chatId,
  3. List<int>? messageIds,
})

Implementation

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