increasedValue property

String increasedValue

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:

Implementation

String get increasedValue => _attributedIncreasedValue.string;
void increasedValue=(String increasedValue)

Implementation

set increasedValue(String increasedValue) {
  _attributedIncreasedValue = AttributedString(increasedValue);
  _hasBeenAnnotated = true;
}