ChatEventVideoChatParticipantIsMutedToggled.fromJson constructor
Parse from a json
Implementation
factory ChatEventVideoChatParticipantIsMutedToggled.fromJson(
Map<String, dynamic> json) =>
ChatEventVideoChatParticipantIsMutedToggled(
participantId: MessageSender.fromJson(json['participant_id']),
isMuted: json['is_muted'],
);