bounce method
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,
}) {
return _BounceWidget(
duration: duration,
height: height,
child: this,
);
}