adornments property

Iterator<Adornment> get adornments

This read-only property returns an iterator over all of the Adornments associated with this part. After each call to the iterator's next() method that returns true, the iterator's key will be the category and the iterator's value will be an Adornment.

Templates should not have any adornments.

Implementation

_i3.Iterator<_i3.Adornment> get adornments => _i4.getProperty(
      this,
      'adornments',
    );
set adornments (Iterator<Adornment> value)

Implementation

set adornments(_i3.Iterator<_i3.Adornment> value) {
  _i4.setProperty(
    this,
    'adornments',
    value,
  );
}