decreasedValue property

String decreasedValue

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

Setting this attribute will override the attributedDecreasedValue.

One of the attributedDecreasedValue or decreasedValue must be set if a handler for SemanticsAction.decrease is provided and one of the value or attributedValue is set.

The reading direction is given by textDirection.

Implementation

String get decreasedValue => _attributedDecreasedValue.string;
void decreasedValue=(String decreasedValue)

Implementation

set decreasedValue(String decreasedValue) {
  _attributedDecreasedValue = AttributedString(decreasedValue);
  _hasBeenAnnotated = true;
}