AnimatedValueBuilder<T>.raw constructor

const AnimatedValueBuilder<T>.raw({
  1. Key? key,
  2. T? initialValue,
  3. required T value,
  4. required Duration duration,
  5. required AnimatedChildValueBuilder<T> builder,
  6. void onEnd(
    1. T value
    )?,
  7. Curve curve = Curves.linear,
  8. Widget? child,
  9. T lerp(
    1. T a,
    2. T b,
    3. double t
    )?,
})

Implementation

const AnimatedValueBuilder.raw({
  super.key,
  this.initialValue,
  required this.value,
  required this.duration,
  required AnimatedChildValueBuilder<T> builder,
  this.onEnd,
  this.curve = Curves.linear,
  this.child,
  this.lerp,
})  : animationBuilder = null,
      rawBuilder = builder,
      builder = null;