TransientScopeImpl constructor

TransientScopeImpl(
  1. Limit limit,
  2. String name, {
  3. List<ResourceScopeImpl>? edges,
})

The transient scope is typically a child of the system scope.

Implementation

TransientScopeImpl(Limit limit, String name, {List<ResourceScopeImpl>? edges})
    : super(limit, name, edges: edges);