GlowEffect constructor

const GlowEffect({
  1. required Color color,
  2. double blurRadius = 12.0,
  3. double spreadRadius = 1.0,
})

Implementation

const GlowEffect({
  required this.color,
  this.blurRadius = 12.0,
  this.spreadRadius = 1.0,
});