zoomOut method

void zoomOut([
  1. double zoomDelta = zoomDeltaDef
])

Zoom out the map with a specified delta

Implementation

void zoomOut([double zoomDelta = zoomDeltaDef]) {
  map?.zoomOut(zoomDelta);
}