bounce method

Widget bounce({
  1. Duration duration = const Duration(milliseconds: 800),
  2. double height = 10.0,
})

Wraps the widget with a continuous bounce animation.

Example:

Icon(Icons.arrow_downward).bounce();

Implementation

Widget bounce({
  Duration duration = const Duration(milliseconds: 800),
  double height = 10.0,
}) =>
    _BounceWidget(
      duration: duration,
      height: height,
      child: this,
    );