SkeletonLoader constructor

const SkeletonLoader({
  1. double? width,
  2. double? height,
  3. double borderRadius = 4,
  4. bool isCircle = false,
  5. EdgeInsets? margin,
  6. Color? baseColor,
  7. Color? highlightColor,
  8. Key? key,
})

Implementation

const SkeletonLoader({
  this.width,
  this.height,
  this.borderRadius = 4,
  this.isCircle = false,
  this.margin,
  this.baseColor,
  this.highlightColor,
  super.key,
});