Query constructor
      
      Query({ 
    
    
- List<PropertyReference> ? distinctOn,
- String? endCursor,
- Filter? filter,
- FindNearest? findNearest,
- List<KindExpression> ? kind,
- int? limit,
- int? offset,
- List<PropertyOrder> ? order,
- List<Projection> ? projection,
- String? startCursor,
Implementation
Query({
  this.distinctOn,
  this.endCursor,
  this.filter,
  this.findNearest,
  this.kind,
  this.limit,
  this.offset,
  this.order,
  this.projection,
  this.startCursor,
});