heartbeat method
Wraps the widget with a heartbeat animation.
Example:
Icon(Icons.favorite).heartbeat();
Implementation
Widget heartbeat({
Duration duration = const Duration(milliseconds: 1200),
}) {
return _HeartbeatWidget(
duration: duration,
child: this,
);
}