RelatedBuilderLink constructor
const
RelatedBuilderLink({
- required SelectBuilderBase builder,
- required String fkConstraintName,
- bool innerJoin = false,
Creates a RelatedBuilderLink.
builder: The select builder for the related table.fkConstraintName: The name of the FK constraint defining the relationship.innerJoin: Whether to perform an inner join (defaults tofalse).
Implementation
const RelatedBuilderLink({
required this.builder,
required this.fkConstraintName,
this.innerJoin = false,
});