easyAccessOnlyResults property
Whether the easy-access filter for results is enabled.
When true, search results are restricted to locations deemed easily accessible. Default is false.
Returns
- True if the easy-access filter is enabled, false otherwise.
Implementation
bool get easyAccessOnlyResults {
final OperationResult resultString = objectMethod(
pointerId,
'SearchPreferences',
'geteasyaccessonlyresults',
);
return resultString['result'];
}
Enable or disable the easy-access results filter.
Parameters
value: True to restrict results to easily accessible locations, false to disable the filter.
Implementation
set easyAccessOnlyResults(final bool value) {
objectMethod(
pointerId,
'SearchPreferences',
'seteasyaccessonlyresults',
args: value,
);
}