chatEventVideoChatMuteNewParticipantsToggled property

ChatEventVideoChatMuteNewParticipantsToggled? chatEventVideoChatMuteNewParticipantsToggled

The mute_new_participants setting of a video chat was toggled

Implementation

ChatEventVideoChatMuteNewParticipantsToggled?
    get chatEventVideoChatMuteNewParticipantsToggled {
  if (this is ChatEventVideoChatMuteNewParticipantsToggled) {
    return this as ChatEventVideoChatMuteNewParticipantsToggled;
  }
  return null;
}