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