allowFuzzyResults property

bool get allowFuzzyResults

Test if fuzzy search results are allowed.

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,
    'GuidedAddressSearchPreferences',
    'getAllowFuzzyResults',
  );

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

Enable or disable the inclusion of fuzzy search results.

Note

  • Default is true.

Parameters

  • IN bAllow True to allow fuzzy search results

Throws

  • An exception if it fails.

Implementation

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