QuerySpec constructor

const QuerySpec({
  1. List<FilterOp> filters = const [],
  2. List<OrderSpec> orderBy = const [],
  3. int? limit,
  4. int? offset,
})

Implementation

const QuerySpec({
  this.filters = const [],
  this.orderBy = const [],
  this.limit,
  this.offset,
});