FindRequest constructor

FindRequest({
  1. required Operator selector,
  2. int? limit = 25,
  3. int? skip,
  4. List<Map<String, String>>? sort,
  5. List<String>? fields,
  6. Object? useIndex,
  7. bool conflicts = false,
  8. int r = 1,
  9. String? bookmark,
  10. bool update = true,
  11. bool? stable,
  12. String stale = 'false',
  13. bool executionStats = false,
})

Implementation

FindRequest(
    {required this.selector,
    this.limit = 25,
    this.skip,
    this.sort,
    this.fields,
    this.useIndex,
    this.conflicts = false,
    this.r = 1,
    this.bookmark,
    this.update = true,
    this.stable,
    this.stale = 'false',
    this.executionStats = false});