getChildScopes static method

Set<String> getChildScopes(
  1. String parentScopeName
)

Implementation

static Set<String> getChildScopes(String parentScopeName) {
  final children = <String>{};
  children.addAll(_childScopes[parentScopeName] ?? {});
  children.addAll(_activeAutoDisposeChildren[parentScopeName] ?? {});
  return children;
}