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