child method

Scope child()

Implementation

Scope child() {
  final child = Scope(parent: this);
  _children.add(child);
  return child;
}