searchOnlyOnboard property
Whether searches are restricted to onboard (offline) data.
When true, only local data will be used for searches. Default is false.
Returns
- True if searches are restricted to onboard data, false otherwise.
Implementation
bool get searchOnlyOnboard {
final OperationResult resultString = objectMethod(
pointerId,
'SearchPreferences',
'getsearchonlyonboard',
);
return resultString['result'];
}
Enable or disable onboard-only searches.
Parameters
value: True to force searches to use onboard data only, false to allow online lookups.
Implementation
set searchOnlyOnboard(final bool value) {
objectMethod(
pointerId,
'SearchPreferences',
'setsearchonlyonboard',
args: value,
);
}