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