reverseWithDelay method

Future<void> reverseWithDelay(
  1. Duration delay
)

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();
}