parent property

TreeVertex get parent

Gets or sets the logical parent for this node.

The default value is null.

This structural property is computed in TreeLayout#doLayout when building the tree structures. You should probably not be setting this property.

Implementation

_i3.TreeVertex get parent => _i4.getProperty(
      this,
      'parent',
    );
set parent (TreeVertex value)

Implementation

set parent(_i3.TreeVertex value) {
  _i4.setProperty(
    this,
    'parent',
    value,
  );
}