startMicrophone method

Future<V2TXLiveCode> startMicrophone()

Turn on the microphone

Return:

'0' success, more information please see V2TXLiveCode

Implementation

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