smoothZoomSupported method
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 Future<bool>.value(true);
}