SkeletonBox constructor

const SkeletonBox({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. double borderRadius = 8,
})

Implementation

const SkeletonBox({
  super.key,
  this.width,
  this.height,
  this.borderRadius = 8,
});