stopMicrophone method

Future<V2TXLiveCode> stopMicrophone()

Turn off the microphone

Return:

'0' success, more information please see V2TXLiveCode

Implementation

Future<V2TXLiveCode> stopMicrophone() async {
  var result = await _channel.invokeMethod('stopMicrophone', {});
  return _liveCodeWithResult(result);
}