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