CoderCircularShake constructor
const
CoderCircularShake({})
Creates a circular shaking animation around the widget.
Starts the animation automatically after 600ms delay, runs for duration, then stops.
Implementation
const CoderCircularShake({
super.key,
required this.child, // ✅ Required: Widget to shake
this.duration = const Duration(
milliseconds: 700,
), // Optional: How long the shaking lasts
});