zoomOut method

Future<void> zoomOut()

Zoom out on the map

Implementation

Future<void> zoomOut() async {
  try {
    await _channel.invokeMethod('zoomOut');
  } catch (e) {
    debugPrint('Error zooming out: $e');
  }
}