animatedBuilder method

AnimatedBuilder animatedBuilder({
  1. Key? key,
  2. required Listenable animation,
  3. required Widget builder(
    1. BuildContext,
    2. Widget?
    ),
})

Implementation

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