fullJoin method

JoinBuilder fullJoin({
  1. required String table,
  2. required WhereClauseGroup on,
})

Adds a FULL JOIN clause

Implementation

JoinBuilder fullJoin({
  required String table,
  required WhereClauseGroup on,
}) {
  addJoin(
    type: JoinType.full,
    table: table,
    on: on,
  );
  return this;
}