hint property
A brief description of the result of performing an action on this node.
Setting this attribute will override the attributedHint.
The reading direction is given by textDirection.
See also:
- attributedHint, which is the AttributedString of this property.
Implementation
String get hint => _attributedHint.string;
Implementation
set hint(String hint) {
_attributedHint = AttributedString(hint);
_hasBeenAnnotated = true;
}