getZoom method

Future<double> getZoom()

Implementation

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