SkeletonLoader constructor

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

Implementation

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