allowFuzzyResults property

bool get allowFuzzyResults

Whether fuzzy search results are allowed.

When true, the search engine may return approximate matches for queries. Default is true.

Returns

  • True if fuzzy results are allowed, false otherwise.

Implementation

bool get allowFuzzyResults {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SearchPreferences',
    'getallowfuzzyresults',
  );

  return resultString['result'];
}
set allowFuzzyResults (bool value)

Enable or disable fuzzy search results.

Parameters

  • value: True to allow fuzzy results, false to require stricter matching.

Implementation

set allowFuzzyResults(final bool value) {
  objectMethod(
    pointerId,
    'SearchPreferences',
    'setallowfuzzyresults',
    args: value,
  );
}