JumpingDot constructor

const JumpingDot({
  1. Key? key,
  2. required int numberOfDot,
  3. double jumpingY = -20,
  4. Color dotColor = Colors.grey,
  5. int durationInMilisecond = 200,
  6. double dotSize = 10.0,
})

Implementation

const JumpingDot({
  Key? key,
  required this.numberOfDot,
  this.jumpingY = -20,
  this.dotColor = Colors.grey,
  this.durationInMilisecond = 200,
  this.dotSize = 10.0,
}) : super(key: key);