leftJoin method

  1. @override
QueryBuilder leftJoin(
  1. String table,
  2. String firstColumn, [
  3. String? operator,
  4. String? secondColumn,
  5. bool where = false,
])
inherited

Implementation

@override
QueryBuilder leftJoin(
  String table,
  String firstColumn, [
  String? operator,
  String? secondColumn,
  bool where = false,
]) {
  return join(
    table,
    firstColumn,
    operator,
    secondColumn,
    "LEFT",
    where,
  );
}