copyWith method
Implementation
UpdateDeleteMessages copyWith({
int? chatId,
List<int>? messageIds,
bool? isPermanent,
bool? fromCache,
}) => UpdateDeleteMessages(
chatId: chatId ?? this.chatId,
messageIds: messageIds ?? this.messageIds,
isPermanent: isPermanent ?? this.isPermanent,
fromCache: fromCache ?? this.fromCache,
);