GlowIndicator constructor

const GlowIndicator({
  1. Key? key,
  2. double size = 12,
  3. Color? color,
  4. bool isPulsing = true,
  5. bool isNeon = false,
  6. Widget? child,
})

Implementation

const GlowIndicator({
  super.key,
  this.size = 12,
  this.color,
  this.isPulsing = true,
  this.isNeon = false,
  this.child,
});