increasedValue property
The value that value will have after performing a SemanticsAction.increase action.
This must be set if a handler for SemanticsAction.increase is provided and value is set.
The reading direction is given by textDirection.
Implementation
String get increasedValue => _increasedValue;
Implementation
set increasedValue(String increasedValue) {
assert(increasedValue != null);
_increasedValue = increasedValue;
_hasBeenAnnotated = true;
}