AutoShimmer constructor
const
AutoShimmer({})
Creates an AutoShimmer widget.
The child parameter is required and represents the widget that will
receive the shimmer effect.
Implementation
const AutoShimmer({
super.key,
required this.child,
this.duration = const Duration(seconds: 2),
this.baseColor = const Color(0xFFE0E0E0),
this.highlightColor = const Color(0xFFF5F5F5),
this.showShimmer = true,
});