textField property

bool textField

If non-null, sets the SemanticsNode.isTextField semantic to the given value.

Implementation

bool get textField => _textField;
void textField= (bool value)

Implementation

set textField(bool value) {
  if (textField == value)
    return;
  _textField = value;
  markNeedsSemanticsUpdate();
}