value property
If non-null, sets the SemanticsNode.value semantic to the given value.
The reading direction is given by textDirection.
Implementation
String get value => _value;Implementation
set value(String value) {
  if (_value == value)
    return;
  _value = value;
  markNeedsSemanticsUpdate();
}