expand method
void
expand()
Expands the tile if currently collapsed.
Implementation
void expand() {
if (_isExpanded) return;
_isExpanded = true;
notifyListeners();
}
Expands the tile if currently collapsed.
void expand() {
if (_isExpanded) return;
_isExpanded = true;
notifyListeners();
}