提交工单
咨询集成、功能及报价等问题
This document describes how to mute/unmute the microphone.
To mute the microphone, call the muteMic method, and set the isMute property to true. To unmute the microphone, set it to false.
// The switch to control the microphone.
let isMute: Bool = true; // To mute the mircophone, set it to [true]. To unmute the microphone, set it to [false].
RoomManager.shared.speakerService.muteMic(isMute) { Result in
// The returned result of mute the microphone.
}
