setDisableTypoToleranceOnWords method

AlgoliaQuery setDisableTypoToleranceOnWords(
  1. List<String> value
)

DisableTypoToleranceOnWords

List of words on which you want to disable typo tolerance. This also disables splitting and concatenation on the specified words.

Source: Learn more

Implementation

AlgoliaQuery setDisableTypoToleranceOnWords(List<String> value) {
  assert(value.isNotEmpty, 'value can not be empty');
  assert(!_parameters.containsKey('disableTypoToleranceOnWords'));
  return _copyWithParameters(
      <String, dynamic>{'disableTypoToleranceOnWords': value});
}