IndexDefinition constructor

const IndexDefinition({
  1. required String name,
  2. required IndexType type,
  3. required List<String> columns,
  4. bool raw = false,
  5. Map<String, Map<String, Object?>> driverOptions = const {},
})

Implementation

const IndexDefinition({
  required this.name,
  required this.type,
  required this.columns,
  this.raw = false,
  this.driverOptions = const {},
});