StructuredQuery constructor

StructuredQuery({
  1. StructuredQuery_Projection? select,
  2. List<StructuredQuery_CollectionSelector> from = const [],
  3. StructuredQuery_Filter? where,
  4. List<StructuredQuery_Order> orderBy = const [],
  5. Cursor? startAt,
  6. Cursor? endAt,
  7. int offset = 0,
  8. Int32Value? limit,
  9. StructuredQuery_FindNearest? findNearest,
})

Implementation

StructuredQuery({
  this.select,
  this.from = const [],
  this.where,
  this.orderBy = const [],
  this.startAt,
  this.endAt,
  this.offset = 0,
  this.limit,
  this.findNearest,
}) : super(fullyQualifiedName);