LoopReference constructor

const LoopReference(
  1. int loop,
  2. List<Object> parts
)

Wraps the given loop and parts as a LoopReference.

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

Implementation

const LoopReference(this.loop, List<Object> parts): super(parts);