namesRoute property
If non-null, sets the SemanticsNode.namesRoute
semantic to the give value.
Implementation
bool get namesRoute => _namesRoute;
Implementation
set namesRoute(bool value) {
if (_namesRoute == value)
return;
_namesRoute = value;
markNeedsSemanticsUpdate();
}