SetGroupCallParticipantVolumeLevel constructor

const SetGroupCallParticipantVolumeLevel({
  1. required int groupCallId,
  2. required MessageSender participantId,
  3. required int volumeLevel,
})

Changes volume level of a participant of an active group call. If the current user can manage the group call, then the participant's volume level will be changed for all users with the default volume level

Implementation

const SetGroupCallParticipantVolumeLevel({
  required this.groupCallId,
  required this.participantId,
  required this.volumeLevel,
});