fullJoin method
Adds a FULL JOIN clause
Implementation
JoinBuilder fullJoin({
required String table,
required WhereClauseGroup on,
}) {
addJoin(
type: JoinType.full,
table: table,
on: on,
);
return this;
}
Adds a FULL JOIN clause
JoinBuilder fullJoin({
required String table,
required WhereClauseGroup on,
}) {
addJoin(
type: JoinType.full,
table: table,
on: on,
);
return this;
}