RelatedBuilderLink constructor

const RelatedBuilderLink({
  1. required SelectBuilderBase builder,
  2. required String fkConstraintName,
  3. 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 to false).

Implementation

const RelatedBuilderLink({
  required this.builder,
  required this.fkConstraintName,
  this.innerJoin = false,
});