PulsingAnimation constructor
const
PulsingAnimation({})
Implementation
const PulsingAnimation({
// The key for the widget.
super.key,
// The required child widget.
required this.child,
// The required duration of the animation.
required this.duration,
// Whether the animation should repeat, default is true.
this.repeat = true,
});