mirror method

Animation<double> mirror()

Creates a new animation that mirrors this animation.

Example:

final mirrored = animation.mirror();

Implementation

Animation<double> mirror() {
  return ReverseAnimation(this);
}