copyWith method

ToggleGroupCallMuteNewParticipants copyWith({
  1. int? groupCallId,
  2. bool? muteNewParticipants,
})

Implementation

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