ManyRelationBuilder constructor
ManyRelationBuilder(
- Table _table
Creates a new ManyRelationBuilder for the given table
.
Throws ArgumentError if table
does not have a table relation.
Implementation
ManyRelationBuilder(this._table) {
if (_table.tableRelation == null) {
throw ArgumentError('Table must have a table relation.');
}
}