forwardThenReset method

Future<void> forwardThenReset()

Animates forward and then resets.

Example:

controller.forwardThenReset();

Implementation

Future<void> forwardThenReset() async {
  await forward();
  reset();
}