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