BaseIndexSettings constructor

const BaseIndexSettings({
  1. List<String>? replicas,
  2. int? paginationLimitedTo,
  3. List<String>? unretrievableAttributes,
  4. List<String>? disableTypoToleranceOnWords,
  5. List<String>? attributesToTransliterate,
  6. List<String>? camelCaseAttributes,
  7. Object? decompoundedAttributes,
  8. List<String>? indexLanguages,
  9. List<String>? disablePrefixOnAttributes,
  10. bool? allowCompressionOfIntegerArray,
  11. List<String>? numericAttributesForFiltering,
  12. String? separatorsToIndex,
  13. List<String>? searchableAttributes,
  14. Object? userData,
  15. Map<String, Map<String, String>>? customNormalization,
  16. String? attributeForDistinct,
})

Returns a new BaseIndexSettings instance.

Implementation

const BaseIndexSettings({
  this.replicas,
  this.paginationLimitedTo,
  this.unretrievableAttributes,
  this.disableTypoToleranceOnWords,
  this.attributesToTransliterate,
  this.camelCaseAttributes,
  this.decompoundedAttributes,
  this.indexLanguages,
  this.disablePrefixOnAttributes,
  this.allowCompressionOfIntegerArray,
  this.numericAttributesForFiltering,
  this.separatorsToIndex,
  this.searchableAttributes,
  this.userData,
  this.customNormalization,
  this.attributeForDistinct,
});