AnimationOverF<T extends double> constructor

AnimationOverF<T extends double>(
  1. Animation<T> parent,
  2. 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);