zoomIn method
void
zoomIn()
Implementation
void zoomIn() {
if (_labelScale < 3.0) {
_labelScale += 0.25;
notifyListeners();
}
}
void zoomIn() {
if (_labelScale < 3.0) {
_labelScale += 0.25;
notifyListeners();
}
}