Join constructor

Join({
  1. required JoinType joinType,
  2. required String tableName,
  3. required OnorUsing onorUsing,
  4. String? tableAs,
})

Implementation

Join(
    {required this.joinType,
    required this.tableName,
    required this.onorUsing,
    this.tableAs});