AnimatedBouncingBackground constructor

AnimatedBouncingBackground({
  1. required AnimationController listenable,
  2. required List<BouncingCircle> circles,
  3. Widget? child,
  4. Key? key,
})

Implementation

AnimatedBouncingBackground({
  required AnimationController listenable,
  required this.circles,
  this.child,
  Key? key,
})  : animation = CurvedAnimation(
        parent: listenable,
        curve: Curves.decelerate,
      ),
      super(key: key, listenable: listenable);