decreasedValue property

String decreasedValue

The value that value will have after performing a SemanticsAction.decrease action.

This must be set if a handler for SemanticsAction.decrease is provided and value is set.

The reading direction is given by textDirection.

Implementation

String get decreasedValue => _decreasedValue;
void decreasedValue= (String decreasedValue)

Implementation

set decreasedValue(String decreasedValue) {
  assert(decreasedValue != null);
  _decreasedValue = decreasedValue;
  _hasBeenAnnotated = true;
}