OutgoingCallControlsContentParams
data class OutgoingCallControlsContentParams(val isCameraEnabled: Boolean, val isMicrophoneEnabled: Boolean, val isVideoCall: Boolean = true, val onCallAction: (CallAction) -> Unit = {})
Parameters for VideoComponentFactory.OutgoingCallControlsContent.
Parameters
isCameraEnabled
Whether the camera is enabled or not.
isMicrophoneEnabled
Whether the microphone is enabled or not.
isVideoCall
Represents whether the call is a video call or not.
onCallAction
Handler used when the user interacts with Call UI.
Constructors
Link copied to clipboard
constructor(isCameraEnabled: Boolean, isMicrophoneEnabled: Boolean, isVideoCall: Boolean = true, onCallAction: (CallAction) -> Unit = {})