zoomOut method

void zoomOut()

Implementation

void zoomOut() {
  if (_labelScale > 0.5) {
    _labelScale -= 0.25;
    notifyListeners();
  }
}