AnimationMax<T extends num> constructor

AnimationMax<T extends num>(
  1. Animation<T> first,
  2. Animation<T> next
)

Creates an AnimationMax.

Either argument can be an AnimationMax itself to combine multiple animations.

Implementation

AnimationMax(Animation<T> first, Animation<T> next) : super(first: first, next: next);