Index constructor

const Index({
  1. String? name,
  2. List<CompositeIndex> composite = const [],
  3. bool unique = false,
  4. bool replace = false,
  5. IndexType? type,
  6. bool? caseSensitive,
})

Annotate properties to build an index.

Implementation

const Index({
  this.name,
  this.composite = const [],
  this.unique = false,
  this.replace = false,
  this.type,
  this.caseSensitive,
});