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