SkeletonLoader constructor

const SkeletonLoader({
  1. double width = double.infinity,
  2. double height = 20,
  3. double borderRadius = 4,
  4. Color? baseColor,
  5. Color? highlightColor,
  6. Key? key,
})

Creates a SkeletonLoader.

Implementation

const SkeletonLoader({
  this.width = double.infinity,
  this.height = 20,
  this.borderRadius = 4,
  this.baseColor,
  this.highlightColor,
  super.key,
});