pauseVideo method

Future<V2TXLiveCode> pauseVideo()

Pause the video stream

Return:

'0' success, more information please see V2TXLiveCode

Implementation

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