value property

String value

A textual description for the current value of the owning RenderObject.

Setting this attribute will override the attributedValue.

The reading direction is given by textDirection.

See also:

Implementation

String get value => _attributedValue.string;
void value=(String value)

Implementation

set value(String value) {
  _attributedValue = AttributedString(value);
  _hasBeenAnnotated = true;
}