ImageShimmerWidget constructor

ImageShimmerWidget({
  1. double? width,
  2. double? height,
  3. required ShimmerDirection shimmerDirection,
  4. required Duration shimmerDuration,
  5. BoxDecoration? boxDecoration,
  6. required Color baseColor,
  7. required Color highlightColor,
  8. required Color backColor,
})

Implementation

ImageShimmerWidget({
  this.width,
  this.height,
  required this.shimmerDirection,
  required this.shimmerDuration,
  this.boxDecoration,
  required this.baseColor,
  required this.highlightColor,
  required this.backColor,
});