allowFuzzyResults property

bool get allowFuzzyResults

Whether fuzzy search results are allowed.

Default is true.

When true, the search engine may return fuzzy (approximate) matches.

Implementation

bool get allowFuzzyResults {
  final OperationResult resultString = objectMethod(
    pointerId,
    'GuidedAddressSearchPreferences',
    'getAllowFuzzyResults',
  );

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

Enable or disable fuzzy search results.

Default is true.

Parameters

  • bAllow: True to allow fuzzy search results.

Implementation

set allowFuzzyResults(final bool bAllow) {
  objectMethod(
    pointerId,
    'GuidedAddressSearchPreferences',
    'setAllowFuzzyResults',
    args: bAllow,
  );
}