autoComplete property

bool get autoComplete

Whether the text field wants auto-complete.

Implementation

bool get autoComplete => _wrapped.autoComplete;
set autoComplete (bool v)

Implementation

set autoComplete(bool v) {
  _wrapped.autoComplete = v;
}