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