stopVideoPreview method Null safety

Future<int> stopVideoPreview()

Stop video preview

Implementation

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