smoothZoomSupported method

  1. @override
Future<bool> smoothZoomSupported()
override

Whether a device can start a smooth zoom.

It is possible for a device to not support smooth zoom, but still support zoom.

Implementation

@override
Future<bool> smoothZoomSupported() {
  verifyInitialized();
  verifyNotDisposed();
  return cameraParameters.isSmoothZoomSupported();
}