SkeletonParagraph constructor

const SkeletonParagraph({
  1. Key? key,
  2. int lines = 3,
  3. double lineHeight = 14,
  4. double lineSpacing = 8,
  5. double lastLineWidth = 0.6,
  6. Color? baseColor,
  7. Color? highlightColor,
  8. bool isLoading = true,
})

Implementation

const SkeletonParagraph({
  super.key,
  this.lines = 3,
  this.lineHeight = 14,
  this.lineSpacing = 8,
  this.lastLineWidth = 0.6,
  this.baseColor,
  this.highlightColor,
  this.isLoading = true,
});