stopPush method

Future<V2TXLiveCode> stopPush()

Stop pushing audio and video data

Return:

'0' success, more information please see V2TXLiveCode

Implementation

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