rightJoin method

QueryBuilder rightJoin(
  1. String table,
  2. String key,
  3. String foreignKey
)

Add a right join to the query.

Implementation

QueryBuilder rightJoin(String table, String key, String foreignKey) {
  _rightJoin = '$table ON ${this.table}.$key = $table.$foreignKey';
  return this;
}