exactMatch property

bool get exactMatch

Test if exact match is used.

Default is false.

Returns

  • True if exact match is used, false otherwise

Throws

  • An exception if it fails

Implementation

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

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

Set/unset the exact match.

If set to true, only an exact match of free text search token is returned as result

Default is false.

Parameters

  • IN value True if exact match is used, false otherwise

Throws

  • An exception if it fails

Implementation

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