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