automaticLevelSkip property
Whether automatic level skipping is enabled.
When enabled, the engine will automatically skip an intermediate level if there is only one result at the current level and only one possible next level to search.
Implementation
bool get automaticLevelSkip {
final OperationResult resultString = objectMethod(
pointerId,
'GuidedAddressSearchPreferences',
'getAutomaticLevelSkip',
);
return resultString['result'];
}
Enable or disable automatic level skipping.
Parameters
enableAutomaticLevelSkip: True to enable automatic skipping of intermediate levels when appropriate.
Implementation
set automaticLevelSkip(final bool enableAutomaticLevelSkip) {
objectMethod(
pointerId,
'GuidedAddressSearchPreferences',
'setAutomaticLevelSkip',
args: enableAutomaticLevelSkip,
);
}