JoinClause constructor

const JoinClause({
  1. required String table,
  2. String? as,
  3. JoinType? type,
  4. WhereClause? on,
  5. bool natural = false,
})

Implementation

const JoinClause(
    {required this.table, this.as, this.type, this.on, this.natural = false});