ShimmerImage constructor

const ShimmerImage({
  1. Key? key,
  2. String? imageAsset,
  3. IconData iconData = Icons.image_outlined,
  4. Color? baseColor,
  5. Color? highlightColor,
})

Implementation

const ShimmerImage({
  super.key,
  this.imageAsset,
  this.iconData = Icons.image_outlined,
  this.baseColor,
  this.highlightColor,
});