animateWidgetShimmerGlow method
- Shimmer Glow
Implementation
Widget animateWidgetShimmerGlow(
{Color color = Colors.white24,
int durationMs = 1800,
bool repeat = true,
bool animate = true}) {
if (!animate) return this;
return _baseAnimate(repeat: repeat).shimmer(
duration: durationMs.ms, color: color, curve: Curves.easeInOutSine);
}