Query<V> constructor

const Query<V>({
  1. required Map<int, Clause> clauses,
  2. required Selectable<Object?> shape,
})

A statement compiled from a builder and ready to be turned into SQL: the clauses that make it up, plus the shape describing how to decode the rows it returns.

Implementation

const Query({required this.clauses, required this.shape});