maximumMatches property
Maximum number of matches returned by address searches.
Default is 40.
Implementation
int get maximumMatches {
final OperationResult resultString = objectMethod(
pointerId,
'GuidedAddressSearchPreferences',
'getMaximumMatches',
);
return resultString['result'];
}
Set the maximum number of matches to return.
Default is 40.
Parameters
matches: Maximum number of matches to return.
Implementation
set maximumMatches(final int matches) {
objectMethod(
pointerId,
'GuidedAddressSearchPreferences',
'setMaximumMatches',
args: matches,
);
}