GlowContainer constructor

const GlowContainer({
  1. Key? key,
  2. Widget? child,
  3. Color? color,
  4. double blurRadius = 30,
  5. double spreadRadius = 1,
})

Implementation

const GlowContainer({
  Key? key,
  this.child,
  this.color,
  this.blurRadius = 30,
  this.spreadRadius = 1,
}) : super(key: key);