AnimationMin<T extends num> constructor

AnimationMin<T extends num>(Animation<T> first, Animation<T> next)

Creates an AnimationMin.

Both arguments must be non-null. Either can be an AnimationMin itself to combine multiple animations.

Implementation

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