SkeletonLine constructor

const SkeletonLine({
  1. Key? key,
  2. required SkeletonConfig config,
  3. double? width,
  4. double height = 16,
  5. EdgeInsetsGeometry? margin,
})

Creates a skeleton line.

Implementation

const SkeletonLine({
  super.key,
  required this.config,
  this.width,
  this.height = 16,
  this.margin,
});