BouncingAnimation constructor

const BouncingAnimation({
  1. Key? key,
  2. required Widget child,
  3. AnimateType animateType = AnimateType.once,
  4. double moveAmount = 100,
  5. double durationMilliseconds = 1200,
  6. bool developerMode = false,
})

Implementation

const BouncingAnimation({
  Key? key,
  required this.child,
  this.animateType = AnimateType.once,
  this.moveAmount = 100,
  this.durationMilliseconds = 1200,
  this.developerMode = false,
}) : super(key: key);