BallPulseIndicator constructor

const BallPulseIndicator({
  1. Key? key,
  2. required IndicatorState state,
  3. Color? color,
  4. Color? backgroundColor,
  5. Clip clipBehavior = Clip.hardEdge,
})

Implementation

const BallPulseIndicator({
  Key? key,
  required this.state,
  this.color,
  this.backgroundColor,
  this.clipBehavior = Clip.hardEdge,
}) : super(key: key);