maxChildrenCount property

num get maxChildrenCount

Gets or sets the maximum number of children of any descendant of this node.

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 maxChildrenCount => _i4.getProperty(
      this,
      'maxChildrenCount',
    );
set maxChildrenCount (num value)

Implementation

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