SkeletonText constructor

const SkeletonText({
  1. Key? key,
  2. double? width,
  3. double height = 10.0,
  4. EdgeInsetsGeometry? margin,
  5. Color color = kSkeletonColor,
})

Implementation

const SkeletonText({
  Key? key,
  this.width,
  this.height = 10.0,
  this.margin,
  this.color = kSkeletonColor,
}) : super(key: key);