CustomStatefulAnimationBuilder constructor
const
CustomStatefulAnimationBuilder({
- Key? key,
- required Widget builder(
- BuildContext,
- double value
- Duration duration = const Duration(milliseconds: 500),
- int repeatCount = 0,
- Curve curve = Curves.linear,
- VoidCallback? onFinished,
- AnimationController? controller,
- bool reverse = false,
Implementation
const CustomStatefulAnimationBuilder({
super.key,
required this.builder,
this.duration = const Duration(milliseconds: 500),
this.repeatCount = 0,
this.curve = Curves.linear,
this.onFinished,
this.controller,
this.reverse = false,
});