attributedDecreasedValue property

AttributedString attributedDecreasedValue

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

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.

See also:

Implementation

AttributedString get attributedDecreasedValue => _attributedDecreasedValue;
void attributedDecreasedValue=(AttributedString attributedDecreasedValue)

Implementation

set attributedDecreasedValue(AttributedString attributedDecreasedValue) {
  _attributedDecreasedValue = attributedDecreasedValue;
  _hasBeenAnnotated = true;
}