attributedDecreasedValue property
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:
- decreasedValue, which is the raw text of this property.
Implementation
AttributedString get attributedDecreasedValue => _attributedDecreasedValue;
Implementation
set attributedDecreasedValue(AttributedString attributedDecreasedValue) {
_attributedDecreasedValue = attributedDecreasedValue;
_hasBeenAnnotated = true;
}