copyWith method

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

Implementation

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