bounceIn method

Future<void> bounceIn()

Easy bounce in animation

Implementation

Future<void> bounceIn() async {
  await forward();
  await reverse();
  await forward();
}