ShimmerEffect constructor

const ShimmerEffect({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. Color baseColor = Colors.grey,
  5. Color highlightColor = Colors.white,
})

Implementation

const ShimmerEffect({
  Key? key,
  required this.width,
  required this.height,
  this.baseColor = Colors.grey,
  this.highlightColor = Colors.white,
}) : super(key: key);