autofillEnabled property
ChromeSetting
get
autofillEnabled
If enabled, Chrome offers to automatically fill in forms. This
preference's value is a boolean, defaulting to true
.
Implementation
ChromeSetting get autofillEnabled =>
ChromeSetting.fromJS(_wrapped.autofillEnabled);
set
autofillEnabled
(ChromeSetting v)
Implementation
set autofillEnabled(ChromeSetting v) {
_wrapped.autofillEnabled = v.toJS;
}