cancelVideoZoomRamp method

Future<void> cancelVideoZoomRamp()

Smoothly ends a zoom transition in progress.

Calling this method is equivalent to calling rampToVideoZoomFactor with a rate of zero. If a zoom transition is in progress, the transition slows to a stop (instead of stopping abruptly).

Before calling this method, you must call lockForConfiguration to acquire exclusive access to the device’s configuration properties. If you do not, calling this method raises an exception. When you finish configuring the device, call unlockForConfiguration to release the lock and allow other devices to configure the settings.

Implementation

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