BoundStateReference constructor

const BoundStateReference(
  1. int depth,
  2. List<Object> parts
)

Wraps the given depth and parts as a BoundStateReference.

The parts must not be mutated after the object is created.

Generally this class is created using StateReference.bind.

Implementation

const BoundStateReference(this.depth, List<Object> parts): super(parts);