hint property

String? get hint

A brief description of what interacting with the node does.

Implementation

String? get hint => _hint;
set hint (String? value)

Implementation

set hint(String? value) {
  _assertConvenience();
  if (value == _hint) return;
  _hint = value;
  _bump();
}