build method

ManyRelation<Table> build()

Builds a many relation.

Implementation

ManyRelation build() {
  return ManyRelation(
    tableWithRelations: _table,
    table: Table(
      tableName: _table.tableName,
      tableRelation: _table.tableRelation!.lastRelation,
    ),
  );
}