setAudioCaptureDeviceMute method
@detail api
@author dixing
@brief Set the mute state of the current audio capture device. It's not mute by default.
@param mute
- true: Mute
- false: Speaking
@return Method call result
- 0: Success.
- < 0: failure
Implementation
FutureOr<int> setAudioCaptureDeviceMute(bool mute) async {
return await nativeCall('setAudioCaptureDeviceMute:', [mute]);
}