leftJoin method

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

Adds a LEFT JOIN clause.

Implementation

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