increasedValue property Null safety
The value that value will have after performing a SemanticsAction.increase action.
Setting this attribute will override the attributedIncreasedValue.
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:
- attributedIncreasedValue, which is the AttributedString of this property.
Implementation
String get increasedValue => _attributedIncreasedValue.string;
Implementation
set increasedValue(String increasedValue) {
assert(increasedValue != null);
_attributedIncreasedValue = AttributedString(increasedValue);
_hasBeenAnnotated = true;
}