FetchQuery constructor

FetchQuery({
  1. Map<String, dynamic>? where,
  2. Map<String, dynamic>? order,
  3. int? offset,
  4. int? limit,
})

Implementation

FetchQuery({
  this.where,
  this.order,
  this.offset,
  this.limit,
});