automaticLevelSkip property

bool get automaticLevelSkip

Get the automatic level skip flag.

Returns

  • True if the engine will automatically skip levels, false otherwise.

Throws

  • An exception if it fails.

Implementation

bool get automaticLevelSkip {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'GuidedAddressSearchPreferences',
    'getAutomaticLevelSkip',
  );

  return resultString['result'];
}
set automaticLevelSkip (bool enableAutomaticLevelSkip)

Set the flag for automatic level skip

When there is only one result at a specific level and there is only one possible next level to search then the engine will automatically skip that level if this flag is set to true.

Parameters

  • IN enableAutomaticLevelSkip True for automatic level skip

Throws

  • An exception if it fails.

Implementation

set automaticLevelSkip(final bool enableAutomaticLevelSkip) {
  objectMethod(
    _pointerId,
    'GuidedAddressSearchPreferences',
    'setAutomaticLevelSkip',
    args: enableAutomaticLevelSkip,
  );
}