hint property

String hint

If non-null, sets the SemanticsNode.hint semantic to the given value.

The reading direction is given by textDirection.

Implementation

String get hint => _hint;
void hint= (String value)

Implementation

set hint(String value) {
  if (_hint == value)
    return;
  _hint = value;
  markNeedsSemanticsUpdate();
}