searchMapPOIs property

bool get searchMapPOIs

Check if search through addresses is enabled.

Default is true

Returns

  • True if search through map POIs is enabled, false otherwise

Throws

  • An exception if it fails

Implementation

bool get searchMapPOIs {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SearchPreferences',
    'getsearchmappois',
  );

  return resultString['result'];
}
set searchMapPOIs (bool value)

Enable or disable search through map POIs.

Default is true

Parameters

  • IN value True if search through map POIs is enabled, false otherwise

Throws

  • An exception if it fails

Implementation

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