shimmer method

Widget shimmer({
  1. Color baseColor = const Color(0xFFd2d2d2),
  2. Color highlightColor = Colors.white,
})

Implementation

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