Join constructor

const Join({
  1. required JoinType type,
  2. required String table,
  3. required WhereClauseGroup on,
})

Creates a new join.

Implementation

const Join({
  required this.type,
  required this.table,
  required this.on,
});