adornedObject property
GraphObject?
get
adornedObject
Gets or sets the GraphObject that is adorned. Setting this property updates the adorned object's Part by calling Part#addAdornment. This may be null if the Adornment does not adorn a particular object.
Implementation
_i3.GraphObject? get adornedObject => _i4.getProperty(
this,
'adornedObject',
);
set
adornedObject
(GraphObject? value)
Implementation
set adornedObject(_i3.GraphObject? value) {
_i4.setProperty(
this,
'adornedObject',
value ?? _i5.undefined,
);
}