toggle method

void toggle()

Implementation

void toggle() {
  _isExpanded = !_isExpanded;
  notifyListeners();
}