SkeletonLoader constructor

const SkeletonLoader({
  1. Key? key,
  2. double? width,
  3. required double height,
  4. double borderRadius = 8,
  5. BoxShape shape = BoxShape.rectangle,
})

Implementation

const SkeletonLoader({
  super.key,
  this.width,
  required this.height,
  this.borderRadius = 8,
  this.shape = BoxShape.rectangle,
});