hint property

String hint

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:

Implementation

String get hint => _attributedHint.string;
void hint=(String hint)

Implementation

set hint(String hint) {
  _attributedHint = AttributedString(hint);
  _hasBeenAnnotated = true;
}