jello method
Wraps the widget with a jello animation effect.
Example:
Text('Boing!').jello();
Implementation
Widget jello({
Duration duration = const Duration(milliseconds: 1000),
Duration delay = Duration.zero,
}) {
return _JelloWidget(
duration: duration,
delay: delay,
child: this,
);
}