zoomOut method

void zoomOut()

Implementation

void zoomOut() {
  _zoom = (_zoom - 1).clamp(1.0, 18.0);
  notifyListeners();
}