unattachedFields property

Iterable<ApiField> unattachedFields

All fields that are not attached.

See attached.

Implementation

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