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