addJoin method

void addJoin({
  1. required JoinType type,
  2. required String table,
  3. required WhereClauseGroup on,
})

Adds a join clause to the builder.

Implementation

void addJoin({
  required JoinType type,
  required String table,
  required WhereClauseGroup on,
}) {
  _joins.add(
    Join(
      type: type,
      table: table,
      on: on,
    ),
  );
}