DBIndex constructor

DBIndex({
  1. String? key,
  2. Map<String, dynamic>? keys,
  3. bool? unique,
  4. bool? sparse,
  5. bool? background,
  6. bool? dropDups,
  7. Map<String, dynamic>? partialFilterExpression,
  8. String? name,
  9. bool? modernReply,
})

Implementation

DBIndex({
  this.key,
  this.keys,
  this.unique,
  this.sparse,
  this.background,
  this.dropDups,
  this.partialFilterExpression,
  this.name,
  this.modernReply,
});