stopVirtualCamera method

Future<V2TXLiveCode> stopVirtualCamera()

关闭图片推流

返回值:

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

Implementation

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