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