BoundLoopReference constructor

const BoundLoopReference(
  1. Object value,
  2. List<Object> parts
)

Wraps the given value and parts as a BoundLoopReference.

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

Generally this class is created using LoopReference.bind.

Implementation

const BoundLoopReference(this.value, List<Object> parts): super(parts);