label property

String label

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

The reading direction is given by textDirection.

Implementation

String get label => _label;
void label= (String value)

Implementation

set label(String value) {
  if (_label == value)
    return;
  _label = value;
  markNeedsSemanticsUpdate();
}