MotionRepeatForever constructor

MotionRepeatForever({
  1. required MotionInterval motion,
})

Creates a new motion with the motion that is passed in.

var myInifiniteLoop = MotionRepeatForever(motion: myMotion);

Implementation

MotionRepeatForever({required this.motion});