textField property
If non-null, sets the SemanticsNode.isTextField
semantic to the given value.
Implementation
bool get textField => _textField;
Implementation
set textField(bool value) {
if (textField == value)
return;
_textField = value;
markNeedsSemanticsUpdate();
}