ChatEventVideoChatMuteNewParticipantsToggled.fromJson constructor

ChatEventVideoChatMuteNewParticipantsToggled.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory ChatEventVideoChatMuteNewParticipantsToggled.fromJson(
        Map<String, dynamic> json) =>
    ChatEventVideoChatMuteNewParticipantsToggled(
      muteNewParticipants: json['mute_new_participants'],
    );