autoCorrect property

bool get autoCorrect

Whether the text field wants auto-correct.

Implementation

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

Implementation

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