leftJoin method

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

Add a left join to the query.

Implementation

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