collapse method
void
collapse()
Collapses the tile if currently expanded.
Implementation
void collapse() {
if (!_isExpanded) return;
_isExpanded = false;
notifyListeners();
}
Collapses the tile if currently expanded.
void collapse() {
if (!_isExpanded) return;
_isExpanded = false;
notifyListeners();
}