scopesRoute property

bool scopesRoute

If non-null, sets the SemanticsNode.scopesRoute semantic to the give value.

Implementation

bool get scopesRoute => _scopesRoute;
void scopesRoute= (bool value)

Implementation

set scopesRoute(bool value) {
  if (scopesRoute == value)
    return;
  _scopesRoute = value;
  markNeedsSemanticsUpdate();
}