LoopAnimationBuilder<T> constructor
const
LoopAnimationBuilder<T> ({
- required ValueWidgetBuilder<
T> builder, - required Animatable<
T> tween, - required Duration duration,
- Curve curve = Curves.linear,
- Widget? child,
- int? fps,
- bool developerMode = false,
- Key? key,
Implementation
const LoopAnimationBuilder({
required this.builder,
required this.tween,
required this.duration,
this.curve = Curves.linear,
this.child,
this.fps,
this.developerMode = false,
Key? key,
}) : super(key: key);