stopPlay method

Future<V2TXLiveCode> stopPlay()

Stop playing the audio and video stream

Return:

'0' success, more information please see V2TXLiveCode

Implementation

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