AnimationBuilder<T> typedef
AnimationBuilder<T> =
Widget Function(BuildContext context, Animation<T> animation)
A callback that builds a widget based on an animation object.
Used by AnimatedValueBuilder.animation to provide direct access to the underlying Animation for advanced use cases. This allows for more control over animation timing and value extraction.
Implementation
typedef AnimationBuilder<T> = Widget Function(
BuildContext context, Animation<T> animation);