IndexEntity constructor

IndexEntity({
  1. Map<String, Object?>? customFeatures,
  2. String? name,
  3. List<String>? tableColumns,
  4. String? type,
  5. bool? unique,
})

Implementation

IndexEntity({
  this.customFeatures,
  this.name,
  this.tableColumns,
  this.type,
  this.unique,
});