zoom property

double get zoom

Implementation

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

Implementation

set zoom(newVal) {
  _zoom = newVal;
  debugPrint("zoom: $newVal");
  notifyListeners();
  // Future.delayed(Duration(milliseconds: 100), () => notifyListeners());
}