SkeletonContainer constructor

const SkeletonContainer({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required SkeletonConfig config,
  5. double? borderRadius,
  6. bool isCircular = false,
  7. EdgeInsetsGeometry? margin,
})

Creates a skeleton container.

Implementation

const SkeletonContainer({
  super.key,
  this.width,
  this.height,
  required this.config,
  this.borderRadius,
  this.isCircular = false,
  this.margin,
});