expanded property

bool expanded

Returns true if the state is expanded, false if collapsed.

Implementation

bool get expanded => value;
void expanded=(bool exp)

Sets the expanded state.

Implementation

set expanded(bool exp) {
  value = exp;
}