getAudioCaptureDeviceMute method

FutureOr<int> getAudioCaptureDeviceMute(
  1. bool mute
)

@detail api @author dixing @brief Gets information about the mute state of the current audio capture device. @param mute
- true: Mute - false: Speaking @return Method call result
- 0: Success. - < 0: failure

Implementation

FutureOr<int> getAudioCaptureDeviceMute(bool mute) async {
  return await nativeCall('getAudioCaptureDeviceMute:', [mute]);
}