IndexEntity constructor

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

Implementation

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