AnimatedBuilder constructor
- Key? key,
- required Listenable animation,
- required TransitionBuilder builder,
- Widget? child,
Creates an animated builder.
The animation
and builder arguments are required.
Implementation
const AnimatedBuilder({
super.key,
required Listenable animation,
required super.builder,
super.child,
}) : super(listenable: animation);