port property
      
      GraphObject
      get
      port
      
    
    
This read-only property returns the primary GraphObject representing a port in this node. If there is a GraphObject whose GraphObject#portId is the empty string, return it. If there is no such element, just return this whole Node.
Implementation
_i3.GraphObject get port => _i4.getProperty(
      this,
      'port',
    );
      
      set
      port
      (GraphObject value) 
      
    
    
    
Implementation
set port(_i3.GraphObject value) {
  _i4.setProperty(
    this,
    'port',
    value,
  );
}