isSymbolicRelation property

bool get isSymbolicRelation

Returns true, if this field has a relation pointer to/from another field with relation type ForeignRelationDefinition. This means that this field relation does not propagate to the database, but instead is managed by the other field.

Implementation

bool get isSymbolicRelation =>
    relation != null && relation is! ForeignRelationDefinition;