SequenceRender constructor

SequenceRender({
  1. required List<MotionRender> pipeline,
})

Creates a render layer from the current child-effect pipeline.

Implementation

SequenceRender({required List<MotionRender> pipeline})
    : pipeline = List<MotionRender>.unmodifiable(pipeline);