toggleVisibility method

void toggleVisibility()

Implementation

void toggleVisibility() {
  _isVisible = !_isVisible;
  if (!_isVisible) {
    _isExpanded = false;
  }
  notifyListeners();
}