rightJoin method
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;
}