zoomIn method

void zoomIn([
  1. double factor = 1.1
])

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

Implementation

void zoomIn([double factor = 1.1]) => _multiplyZoom(factor);