AnimatedIndicator constructor

const AnimatedIndicator({
  1. Key? key,
  2. Offset? location,
  3. double? radius,
  4. double? overlayRadius,
  5. double? ringRadius,
  6. Color? color,
  7. bool animate = true,
})

Implementation

const AnimatedIndicator({
  super.key,
  this.location,
  this.radius,
  this.overlayRadius,
  this.ringRadius,
  this.color,
  this.animate = true,
});