stopSmoothZoom method

Future<void> stopSmoothZoom()

Stops the smooth zoom.

Applications should wait for the OnZoomChangeListener to know when the zoom is actually stopped. This method is supported if CameraParameters.isSmoothZoomSupported is true.

Implementation

Future<void> stopSmoothZoom() {
  return _channel.$stopSmoothZoom(this);
}