semanticLabel property
String?
get
semanticLabel
Implementation
String? get semanticLabel => _semanticLabel;
set
semanticLabel
(String? value)
Implementation
set semanticLabel(String? value) {
if (_semanticLabel == value) {
return;
}
_semanticLabel = value;
markNeedsSemanticsUpdate();
}