getZoom method

Future<double> getZoom()

Returns the current zoom value.

Implementation

Future<double> getZoom() async {
  final double zoom = await _channel.invokeMethod('currentZoom');
  return zoom;
}