shimmer method
Implementation
Widget shimmer({
Color baseColor = const Color(0xFFd2d2d2),
Color highlightColor = Colors.white,
}) {
return Shimmer.fromColors(
baseColor: baseColor,
highlightColor: highlightColor,
child: this,
);
}