JumpingDotAnimation constructor

const JumpingDotAnimation({
  1. Key? key,
  2. Color? color,
  3. int numberOfDots = 3,
  4. double radius = 6,
})

Implementation

const JumpingDotAnimation({
  Key? key,
  this.color,
  this.numberOfDots = 3,
  this.radius = 6,
}) : super(key: key);