IndexBlueprint constructor

const IndexBlueprint({
  1. required String name,
  2. required List<String> columns,
  3. ColumnIndex type = ColumnIndex.indexKey,
})

Implementation

const IndexBlueprint({
  required this.name,
  required this.columns,
  this.type = ColumnIndex.indexKey,
});