reverseWithDelay method
Animates reverse with a delay before starting.
Example:
controller.reverseWithDelay(Duration(milliseconds: 500));
Implementation
Future<void> reverseWithDelay(Duration delay) async {
await Future.delayed(delay);
await reverse();
}