ToggleGroupCallParticipantIsMuted constructor

const ToggleGroupCallParticipantIsMuted({
  1. required int groupCallId,
  2. required MessageSender participantId,
  3. required bool isMuted,
})

Toggles whether a participant of an active group call is muted, unmuted, or allowed to unmute themselves

Implementation

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