JoinedTable constructor

JoinedTable(
  1. JoinType _type,
  2. String tableName, [
  3. String? alias
])

Implementation

JoinedTable(this._type, String tableName, [String? alias])
    : _to = TableName(tableName, alias) {
  _info = QueryJoinedTableInfo(this);
}