label property
If non-null, sets the SemanticsNode.label semantic to the given value.
The reading direction is given by textDirection.
Implementation
String get label => _label;
Implementation
set label(String value) {
if (_label == value)
return;
_label = value;
markNeedsSemanticsUpdate();
}