descendantCount property

num get descendantCount

Gets or sets the number of descendants this node has.

For a leaf node, this will be zero.

This informational property is computed as part of the TreeLayout#initializeTreeVertexValues pass. You should probably not be setting this property.

Implementation

_i2.num get descendantCount => _i4.getProperty(
      this,
      'descendantCount',
    );
set descendantCount (num value)

Implementation

set descendantCount(_i2.num value) {
  _i4.setProperty(
    this,
    'descendantCount',
    value,
  );
}