adornedPart property

Part? adornedPart

This read-only property returns the Part that contains the adorned object. This will be null if the #adornedObject is null.

Implementation

_i3.Part? get adornedPart => _i4.getProperty(
      this,
      'adornedPart',
    );
void adornedPart=(Part? value)

Implementation

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