exactMatch property

bool get exactMatch

Test if exact match is used.

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)

Set or unset the exact match.

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

Default is false.

Parameters

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

Implementation

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