stopPreview method

Future stopPreview()

Implementation

Future<dynamic> stopPreview() async {
  try {
    return await _cameraChannel.invokeMethod("stopPreview");
  } catch (e) {
    Logger.root.warning(e);
  }
  return null;
}