enableMic

fun enableMic()

This method can be used to request a remote participant to enable their microphone.

When called on a remote participant, a mic-enable request is sent. The remote participant will receive a onMicRequested callback and can accept or reject the request.

Note: This method has no effect when called on the local participant. Use unmuteMic instead.

Code Example:


// Request a remote participant to turn on their mic
participant.enableMic()

See also

Meeting.unmuteMic()

MeetingEventListener.onMicRequested()