collapsed property

bool get collapsed

Implementation

bool get collapsed => value.collapsed;
set collapsed (bool newValue)

Implementation

set collapsed(bool newValue) {
  if (value.collapsed == newValue) {
    return;
  }
  super.value = ResizablePaneValue(value.size, newValue);
}