value property

String value

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

The reading direction is given by textDirection.

Implementation

String get value => _value;
void value= (String value)

Implementation

set value(String value) {
  if (_value == value)
    return;
  _value = value;
  markNeedsSemanticsUpdate();
}