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