searchSuggestEnabled property
ChromeSetting
get
searchSuggestEnabled
If enabled, Chrome sends the text you type into the Omnibox to your
default search engine, which provides predictions of websites and searches
that are likely completions of what you've typed so far. This preference's
value is a boolean, defaulting to true
.
Implementation
ChromeSetting get searchSuggestEnabled =>
ChromeSetting.fromJS(_wrapped.searchSuggestEnabled);
set
searchSuggestEnabled
(ChromeSetting v)
Implementation
set searchSuggestEnabled(ChromeSetting v) {
_wrapped.searchSuggestEnabled = v.toJS;
}