Opts constructor

Opts({
  1. required List<String> useIndex,
  2. required String bookmark,
  3. required int limit,
  4. required int skip,
  5. Object? sort,
  6. required Object? fields,
  7. required List<int> r,
  8. required bool conflicts,
})

Implementation

Opts({
  required this.useIndex,
  required this.bookmark,
  required this.limit,
  required this.skip,
  this.sort,
  required this.fields,
  required this.r,
  required this.conflicts,
});