animatedBuilder method
AnimatedBuilder
animatedBuilder({
- Key? key,
- required Listenable animation,
- required Widget builder(),
Implementation
AnimatedBuilder animatedBuilder({Key? key, required Listenable animation, required Widget Function(BuildContext, Widget?) builder}) {
return AnimatedBuilder(child: this, key: key, animation: animation, builder: builder);
}