mirror method

Animation<double> mirror()

Creates a new animation that mirrors this animation.

Example:

final Animation<double> mirrored = animation.mirror();

Implementation

Animation<double> mirror() => ReverseAnimation(this);