playReverse method

Future<AnimationScenario> playReverse()

Play the animation from the opposite.

Implementation

Future<AnimationScenario> playReverse() async {
  __animation = _builder.animate(controller);
  await controller.reverse().orCancel;
  return this;
}