Shimmer constructor

const Shimmer({
  1. Key? key,
  2. int millisecondsDelay = 0,
  3. double radius = 0,
  4. FadeTheme? fadeTheme,
  5. Color? highlightColor,
  6. Color? baseColor,
  7. double width = double.infinity,
  8. double height = 80,
})

Creates a shimmer container widget.

Implementation

const Shimmer({
  Key? key,
  this.millisecondsDelay = 0,
  this.radius = 0,
  this.fadeTheme,
  this.highlightColor,
  this.baseColor,
  this.width = double.infinity,
  this.height = 80,
}) : super(key: key);