GroupCallParticipant constructor
GroupCallParticipant({
- MessageSender? participantId,
- required int audioSourceId,
- required int screenSharingAudioSourceId,
- GroupCallParticipantVideoInfo? videoInfo,
- GroupCallParticipantVideoInfo? screenSharingVideoInfo,
- required String bio,
- required bool isCurrentUser,
- required bool isSpeaking,
- required bool isHandRaised,
- required bool canBeMutedForAllUsers,
- required bool canBeUnmutedForAllUsers,
- required bool canBeMutedForCurrentUser,
- required bool canBeUnmutedForCurrentUser,
- required bool isMutedForAllUsers,
- required bool isMutedForCurrentUser,
- required bool canUnmuteSelf,
- required int volumeLevel,
- required String order,
Implementation
GroupCallParticipant({
this.participantId,
required this.audioSourceId,
required this.screenSharingAudioSourceId,
this.videoInfo,
this.screenSharingVideoInfo,
required this.bio,
required this.isCurrentUser,
required this.isSpeaking,
required this.isHandRaised,
required this.canBeMutedForAllUsers,
required this.canBeUnmutedForAllUsers,
required this.canBeMutedForCurrentUser,
required this.canBeUnmutedForCurrentUser,
required this.isMutedForAllUsers,
required this.isMutedForCurrentUser,
required this.canUnmuteSelf,
required this.volumeLevel,
required this.order,
});