SkeletonBox constructor

const SkeletonBox({
  1. Key? key,
  2. required SkeletonConfig config,
  3. double aspectRatio = 1.0,
  4. double? borderRadius,
})

Creates a skeleton box.

Implementation

const SkeletonBox({
  super.key,
  required this.config,
  this.aspectRatio = 1.0,
  this.borderRadius,
});