scopesRoute property
Whether the semantics node is the root of a subtree for which values should be announced.
See also:
- SemanticsFlag.scopesRoute, for a full description of route scoping.
Implementation
bool get scopesRoute => _flags.scopesRoute;
Implementation
set scopesRoute(bool value) {
_flags = _flags.copyWith(scopesRoute: value);
_hasBeenAnnotated = true;
}