Query<V> constructor
const
Query<V> ({
- required Map<
int, Clause> clauses, - 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});