allowFuzzyResults property

bool get allowFuzzyResults

Test if fuzzy search results are allowed

Default is true

Returns

  • True if fuzzy search results are allowed, false otherwise

Throws

  • An exception if it fails

Implementation

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

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

Enable or disable the inclusion of fuzzy search results

Default is true

Parameters

  • IN value True if fuzzy search results are allowed, false otherwise

Throws

  • An exception if it fails

Implementation

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