stopPlay method

Future<V2TXLiveCode> stopPlay()

停止播放音视频流。

@return 返回值 {@link V2TXLiveCode}

  • V2TXLIVE_OK: 成功

Implementation

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