JoinClause constructor
const
JoinClause({
- required String table,
- String? as,
- JoinType? type,
- WhereClause? on,
- bool natural = false,
Implementation
const JoinClause(
{required this.table, this.as, this.type, this.on, this.natural = false});