GlowText constructor

const GlowText({
  1. required String content,
  2. String? glowColor,
  3. String fontSize = '32px',
  4. String fontWeight = '700',
  5. double intensity = 1.0,
  6. Key? key,
})

Implementation

const GlowText({
  required this.content,
  this.glowColor,
  this.fontSize = '32px',
  this.fontWeight = '700',
  this.intensity = 1.0,
  super.key,
});