rightJoin method

QueryBuilder rightJoin(
  1. String table,
  2. String col1,
  3. String operator,
  4. String col2,
)

Adds a RIGHT JOIN clause.

Implementation

QueryBuilder rightJoin(String table, String col1, String operator, String col2) {
  _joins.add('RIGHT JOIN ${_quoteIdentifier(table)} ON ${_quoteIdentifier(col1)} $operator ${_quoteIdentifier(col2)}');
  return this;
}