copyWith method
Implementation
ToggleVideoChatMuteNewParticipants copyWith({
int? groupCallId,
bool? muteNewParticipants,
}) => ToggleVideoChatMuteNewParticipants(
groupCallId: groupCallId ?? this.groupCallId,
muteNewParticipants: muteNewParticipants ?? this.muteNewParticipants,
);