diagram property
Diagram?
get
diagram
Gets or sets the Diagram that was modified. When this property is non-null, the #model property will be null. However this property and the #model property may both be null simultaneously, when no particular model or diagram applies.
Implementation
_i3.Diagram? get diagram => _i4.getProperty(
this,
'diagram',
);
set
diagram
(Diagram? value)
Implementation
set diagram(_i3.Diagram? value) {
_i4.setProperty(
this,
'diagram',
value ?? _i5.undefined,
);
}