BaseIndexSettings constructor

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

Returns a new BaseIndexSettings instance.

Implementation

const BaseIndexSettings({
  this.attributesForFaceting,
  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,
});