ShimmerWrapper constructor

const ShimmerWrapper({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. double radius = mediumBorderRadius,
  5. Color? backgroundColor,
  6. Color? baseColor,
  7. Color? highlightColor,
})

Implementation

const ShimmerWrapper({
  super.key,
  required this.width,
  required this.height,
  this.radius = mediumBorderRadius,
  this.backgroundColor,
  this.baseColor,
  this.highlightColor,
});