autofillAddressEnabled property

ChromeSetting get autofillAddressEnabled

If enabled, Chrome offers to automatically fill in addresses and other form data. This preference's value is a boolean, defaulting to true.

Implementation

ChromeSetting get autofillAddressEnabled =>
    ChromeSetting.fromJS(_wrapped.autofillAddressEnabled);
set autofillAddressEnabled (ChromeSetting v)

Implementation

set autofillAddressEnabled(ChromeSetting v) {
  _wrapped.autofillAddressEnabled = v.toJS;
}