exactMatch property

bool get exactMatch

Whether exact-match mode is enabled.

When true, only exact matches are returned. Default is false.

Returns

  • True if exact match is used, false otherwise.

Implementation

bool get exactMatch {
  final OperationResult resultString = objectMethod(
    pointerId,
    'SearchPreferences',
    'getexactmatch',
  );

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

Enable or disable exact-match behavior.

Parameters

  • value: True to require exact matches, false to allow fuzzy or partial matches.

Implementation

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