stopPush method

Future<V2TXLiveCode> stopPush()

停止推送音视频数据

返回值:

0 成功,更多信息请查看 V2TXLiveCode

Implementation

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