GlowTextProps constructor

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

Implementation

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