expanded property
bool
get
expanded
Whether the tile is currently expanded.
Implementation
bool get expanded => _expanded;
set
expanded
(bool v)
Sets the expanded state and invalidates the paint cache.
Implementation
set expanded(bool v) {
_expanded = v;
_invalidateCache();
}