forwardThenReverse method
Animates forward and then reverses.
Example:
controller.forwardThenReverse();
Implementation
Future<void> forwardThenReverse() async {
await forward();
await reverse();
}
Animates forward and then reverses.
Example:
controller.forwardThenReverse();
Future<void> forwardThenReverse() async {
await forward();
await reverse();
}