stopMicDeviceTest method

Future<int?> stopMicDeviceTest()

Stop mic test (Support for macOS and Windows platforms)

Return:

0: success; negative number: failure

Implementation

Future<int?> stopMicDeviceTest() async {
  var result = await _channel.invokeMethod('stopMicDeviceTest');
  return V2TXLiveFlutterResult.intValue(result);
}