QueryBase constructor

QueryBase({
  1. int? skip,
  2. int? take,
  3. String? orderBy,
  4. String? orderByDesc,
  5. String? include,
  6. String? fields,
  7. Map<String, String?>? meta,
})

Implementation

QueryBase(
    {this.skip,
    this.take,
    this.orderBy,
    this.orderByDesc,
    this.include,
    this.fields,
    this.meta});