resumeVideo method

Future<V2TXLiveCode> resumeVideo()

Resume the video stream

Return:

'0' success, more information please see V2TXLiveCode

Implementation

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