JoinClause constructor

JoinClause(
  1. String type,
  2. String? table,
  3. String? alias,
  4. Expr? on, {
  5. SelectStmt? subquery,
  6. List<String>? using,
  7. bool natural = false,
  8. IndexHint? indexedBy,
})

Implementation

JoinClause(
  this.type,
  this.table,
  this.alias,
  this.on, {
  this.subquery,
  this.using,
  this.natural = false,
  this.indexedBy,
});