forwardThenReset method
Animates forward and then resets.
Example:
controller.forwardThenReset();
Implementation
Future<void> forwardThenReset() async {
await forward();
reset();
}
Animates forward and then resets.
Example:
controller.forwardThenReset();
Future<void> forwardThenReset() async {
await forward();
reset();
}