Query constructor

Query({
  1. Key? ancestorKey,
  2. String? kind,
  3. List<Filter>? filters,
  4. List<Order>? orders,
  5. int? offset,
  6. int? limit,
})

Implementation

Query({
  this.ancestorKey,
  this.kind,
  this.filters,
  this.orders,
  this.offset,
  this.limit,
});