getZoom method

Future<int> getZoom()

Gets current zoom value.

This also works when smooth zoom is in progress. Applications should check isZoomSupported before using this method.

Implementation

Future<int> getZoom() async {
  return _channel.$getZoom(this) as int;
}