setsChildPortSpot property
      
      bool
      get
      setsChildPortSpot
      
    
    
Gets or sets whether the TreeLayout should set the ToSpot for each child node port.
The default value is true -- this may modify the spot of the ports of the children nodes, if the node has only a single port.
The spot used depends on the value of #childPortSpot.
This sets the #rootDefaults' property of the same name.
Implementation
_i2.bool get setsChildPortSpot => _i4.getProperty(
      this,
      'setsChildPortSpot',
    );
      
      set
      setsChildPortSpot
      (bool value) 
      
    
    
    
Implementation
set setsChildPortSpot(_i2.bool value) {
  _i4.setProperty(
    this,
    'setsChildPortSpot',
    value,
  );
}