attachedFields property

Iterable<ApiField> attachedFields

All fields that are attached.

See attached.

Implementation

Iterable<ApiField> get attachedFields => fields.where(
      (ApiField field) => field.isAttached,
    );