attributedIncreasedValue property
The value that value will have after performing a SemanticsAction.increase action in AttributedString format.
One of the attributedIncreasedValue or increasedValue must be set if a handler for SemanticsAction.increase is provided and one of the value or attributedValue is set.
The reading direction is given by textDirection.
See also:
- increasedValue, which is the raw text of this property.
Implementation
AttributedString get attributedIncreasedValue => _attributedIncreasedValue;
Implementation
set attributedIncreasedValue(AttributedString attributedIncreasedValue) {
_attributedIncreasedValue = attributedIncreasedValue;
_hasBeenAnnotated = true;
}