zoomOut method

void zoomOut([
  1. double factor = 0.9
])

Zooms out by factor (default 0.9), multiplying the current zoom and clamping to minZoom in the Controller. A no-op when not isAttached.

Implementation

void zoomOut([double factor = 0.9]) => _multiplyZoom(factor);