ChatEventVideoChatParticipantIsMutedToggled constructor

const ChatEventVideoChatParticipantIsMutedToggled({
  1. required MessageSender participantId,
  2. required bool isMuted,
})

A video chat participant was muted or unmuted

Implementation

const ChatEventVideoChatParticipantIsMutedToggled({
  required this.participantId,
  required this.isMuted,
});