QueryBuilder<T> constructor

QueryBuilder<T>(
  1. Connection connection,
  2. String table, {
  3. required T hydrate(
    1. Row row
    ),
  4. ModelDefinition<T>? definition,
})

Implementation

QueryBuilder(
  this.connection,
  this.table, {
  required this._hydrate,
  this.definition,
});