wasTreeExpanded property

bool get wasTreeExpanded

Gets or sets whether the subtree graph starting at this node had been collapsed by a call to #expandTree on the parent node. The initial value is false.

Implementation

_i2.bool get wasTreeExpanded => _i4.getProperty(
      this,
      'wasTreeExpanded',
    );
set wasTreeExpanded (bool value)

Implementation

set wasTreeExpanded(_i2.bool value) {
  _i4.setProperty(
    this,
    'wasTreeExpanded',
    value,
  );
}