isZoomSupported method

Future<bool> isZoomSupported()

Returns true if zoom is supported.

Applications should call this before using other zoom methods.

Implementation

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