zoom property

double get zoom

Implementation

double get zoom => _zoom;
set zoom (double newVal)

Implementation

set zoom(double newVal) {
  _zoom = newVal;
  debugPrint("Zoom: $newVal");
  notifyListeners();
}