zoomOut method

Future<void> zoomOut()

Decrements the current zoom level by 1.0.

Implementation

Future<void> zoomOut() async {
  await mapController.animateCamera(CameraUpdate.zoomOut());
}