stopPush method

Future<V2TXLiveCode> stopPush()

停止推送音视频数据。

@return 返回值 {@link V2TXLiveCode}

  • V2TXLIVE_OK: 成功

Implementation

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