StructuredQuery constructor

StructuredQuery({
  1. Cursor? endAt,
  2. List<CollectionSelector>? from,
  3. int? limit,
  4. int? offset,
  5. List<Order>? orderBy,
  6. Projection? select,
  7. Cursor? startAt,
  8. Filter? where,
})

Implementation

StructuredQuery({
  this.endAt,
  this.from,
  this.limit,
  this.offset,
  this.orderBy,
  this.select,
  this.startAt,
  this.where,
});