stopScreenCapture method

Future<V2TXLiveCode> stopScreenCapture()

关闭屏幕采集

返回值:

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

Implementation

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