ShimmerWidget constructor

ShimmerWidget({
  1. Key? key,
  2. required Widget child,
  3. AlignmentGeometry? begin,
  4. AlignmentGeometry? end,
  5. List<Color>? shimmerColors,
  6. bool isTransparent = false,
})

Implementation

ShimmerWidget({
  super.key,
  required this.child,
  this.begin,
  this.end,
  this.shimmerColors,
  this.isTransparent = false, // Default to false (no transparency)
});