ShimmerParagraph constructor

const ShimmerParagraph({
  1. Key? key,
  2. int lineCount = 4,
  3. double lineHeight = 12,
  4. double lineSpacing = 8,
  5. double lastLineWidthFactor = 0.65,
  6. EdgeInsetsGeometry padding = EdgeInsets.zero,
  7. bool enabled = true,
})

Implementation

const ShimmerParagraph({
  super.key,
  this.lineCount = 4,
  this.lineHeight = 12,
  this.lineSpacing = 8,
  this.lastLineWidthFactor = 0.65,
  this.padding = EdgeInsets.zero,
  this.enabled = true,
});