RepeatedAnimationBuilder<T> constructor
const
RepeatedAnimationBuilder<T> ({
- Key? key,
- required T start,
- required T end,
- required Duration duration,
- Curve curve = Curves.linear,
- Curve? reverseCurve,
- RepeatMode mode = RepeatMode.repeat,
- required Widget builder(
- BuildContext context,
- T value,
- Widget? child
- Widget? child,
- T lerp(
- T a,
- T b,
- double t
- bool play = true,
- Duration? reverseDuration,
Implementation
const RepeatedAnimationBuilder({
super.key,
required this.start,
required this.end,
required this.duration,
this.curve = Curves.linear,
this.reverseCurve,
this.mode = RepeatMode.repeat,
required this.builder,
this.child,
this.lerp,
this.play = true,
this.reverseDuration,
}) : animationBuilder = null;