copyWith method

ChatEventVideoChatMuteNewParticipantsToggled copyWith({
  1. bool? muteNewParticipants,
})

Implementation

ChatEventVideoChatMuteNewParticipantsToggled copyWith({
  bool? muteNewParticipants,
}) => ChatEventVideoChatMuteNewParticipantsToggled(
  muteNewParticipants: muteNewParticipants ?? this.muteNewParticipants,
);