AnimatedLoadingJumpingDots constructor

const AnimatedLoadingJumpingDots({
  1. Key? key,
  2. int numberOfDots = 3,
  3. Color color = Colors.black,
  4. double dotSize = 10,
  5. double jumpingHeight = 30,
  6. Duration speed = const Duration(milliseconds: 300),
  7. Duration delayBetweenBounces = const Duration(milliseconds: 50),
})

Implementation

const AnimatedLoadingJumpingDots({
  Key? key,
  this.numberOfDots = 3,
  this.color = Colors.black,
  this.dotSize = 10,
  this.jumpingHeight = 30,
  this.speed = const Duration(milliseconds: 300),
  this.delayBetweenBounces = const Duration(milliseconds: 50),
}) : super(key: key);