Index constructor

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

Implementation

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