attributedDecreasedValue property Null safety
If non-null, sets the SemanticsNode.attributedDecreasedValue semantic to the given value.
The reading direction is given by textDirection.
Implementation
AttributedString? get attributedDecreasedValue => _attributedDecreasedValue;
Implementation
set attributedDecreasedValue(AttributedString? value) {
if (_attributedDecreasedValue == value)
return;
_attributedDecreasedValue = value;
markNeedsSemanticsUpdate();
}