isSmoothZoomSupported method

Future<bool> isSmoothZoomSupported()

Whether smooth zoom is supported.

Applications should call this before using other smooth zoom methods.

Implementation

Future<bool> isSmoothZoomSupported() async {
  return await _channel.$isSmoothZoomSupported(this) as bool;
}