addJoin method
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,
),
);
}