AnimationOverF<T extends double> constructor
AnimationOverF<T extends double> (
- Animation<
T> parent, - T first
Creates an AnimationOverFirst
.
Both arguments must be non-null. Either can be an AnimationOverFirst
itself
to combine multiple animations.
Implementation
AnimationOverF(this.parent, this.first) : assert(first != null && first < 1.0), assert(parent != null);