increasedValue property

String increasedValue

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

The reading direction is given by textDirection.

Implementation

String get increasedValue => _increasedValue;
void increasedValue= (String value)

Implementation

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