copyWith method
Implementation
UpdateGroupCallMessagesDeleted copyWith({
int? groupCallId,
List<int>? messageIds,
}) => UpdateGroupCallMessagesDeleted(
groupCallId: groupCallId ?? this.groupCallId,
messageIds: messageIds ?? this.messageIds,
);