stopVideoPreview method

Future<int> stopVideoPreview()

停止视频预览

Implementation

Future<int> stopVideoPreview() async {
  IntValue reply = await _api.stopVideoPreview();
  return reply.value ?? -1;
}