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