ReverseAnimation constructor

ReverseAnimation(Animation<double> parent)

Creates a reverse animation.

The parent argument must not be null.

Implementation

ReverseAnimation(this.parent)
  : assert(parent != null);