expanded property
bool
get
expanded
Returns true
if the state is expanded, false
if collapsed.
Implementation
bool get expanded => value;
set
expanded
(bool exp)
Sets the expanded state.
Implementation
set expanded(bool exp) {
value = exp;
}