node property

Node? get node

Gets or sets the Node associated with this vertex, if any. The value may be null if this vertex is a "dummy" vertex, not represented by a real Node in the Diagram.

This property setter also sets the #bounds and #focus properties according to the value of the Node's actualBounds and its Part#locationObject's center point.

Implementation

_i3.Node? get node => _i4.getProperty(
      this,
      'node',
    );
set node (Node? value)

Implementation

set node(_i3.Node? value) {
  _i4.setProperty(
    this,
    'node',
    value ?? _i5.undefined,
  );
}