QueryParams constructor

const QueryParams({
  1. String? where,
  2. String? orderBy,
  3. int? limit,
  4. int? offset,
  5. Map<String, dynamic>? values,
})

Implementation

const QueryParams({
  this.where,
  this.orderBy,
  this.limit,
  this.offset,
  this.values,
});