zoomIn method

void zoomIn()

Implementation

void zoomIn() {
  _zoom = (_zoom + 1).clamp(1.0, 18.0);
  notifyListeners();
}