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