setMinWordSizeFor2Typos method

AlgoliaQuery setMinWordSizeFor2Typos(
  1. int value
)

MinWordSizeFor2Typos

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

Source: Learn more

Implementation

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