children property
Array<TreeVertex>
get
children
Gets or sets the logical children for this node.
The default value is an empty array.
This structural property is computed in TreeLayout#doLayout when building the tree structures. You should probably not be setting this property.
Implementation
_i7.Array<_i3.TreeVertex> get children => _i4.getProperty(
this,
'children',
);
set
children
(Array<TreeVertex> value)
Implementation
set children(_i7.Array<_i3.TreeVertex> value) {
_i4.setProperty(
this,
'children',
value,
);
}