GetAnimatedBuilder<T> constructor

const GetAnimatedBuilder<T>({
  1. Key? key,
  2. Curve curve = Curves.linear,
  3. ValueSetter<AnimationController>? onComplete,
  4. ValueSetter<AnimationController>? onStart,
  5. required Duration duration,
  6. required Tween<T> tween,
  7. required T idleValue,
  8. required ValueWidgetBuilder<T> builder,
  9. required Widget child,
  10. required Duration delay,
})

Implementation

const GetAnimatedBuilder({
  super.key,
  this.curve = Curves.linear,
  this.onComplete,
  this.onStart,
  required this.duration,
  required this.tween,
  required this.idleValue,
  required this.builder,
  required this.child,
  required this.delay,
});