value property Null safety
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:
- attributedValue, which is the AttributedString of this property.
- increasedValue and attributedIncreasedValue, which describe what value will be after performing SemanticsAction.increase.
- decreasedValue and attributedDecreasedValue, which describe what value will be after performing SemanticsAction.decrease.
Implementation
String get value => _attributedValue.string;Implementation
set value(String value) {
  assert(value != null);
  _attributedValue = AttributedString(value);
  _hasBeenAnnotated = true;
}