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