AnimatedBouncingBackground constructor
AnimatedBouncingBackground({
- required AnimationController listenable,
- required List<
BouncingCircle> circles, - Widget? child,
- 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);