setMinWordSizeFor1Typo method

AlgoliaQuery setMinWordSizeFor1Typo(
  1. int value
)

MinWordSizeFor1Typo

Minimum number of characters a word in the query string must contain to accept matches with 1 typo.

Source: Learn more

Implementation

AlgoliaQuery setMinWordSizeFor1Typo(int value) {
  assert(!_parameters.containsKey('minWordSizefor1Typo'));
  return _copyWithParameters(<String, dynamic>{'minWordSizefor1Typo': value});
}