maxMatches property

int get maxMatches

Get the max number of matches.

Default is 40

Returns

  • Max number of matches

Throws

  • An exception if it fails

Implementation

int get maxMatches {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SearchPreferences',
    'getmaxmatches',
  );

  return resultString['result'];
}
set maxMatches (int value)

Set the max number of matches.

Default is 40

Parameters

  • IN value Max number of matches

Throws

  • An exception if it fails

Implementation

set maxMatches(final int value) {
  objectMethod(_pointerId, 'SearchPreferences', 'setmaxmatches', args: value);
}