stopMicrophone method

Future<V2TXLiveCode> stopMicrophone()

关闭麦克风。

@return 返回值 {@link V2TXLiveCode}

  • V2TXLIVE_OK: 成功

Implementation

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