SequencedAnimationsBuilder constructor
const
SequencedAnimationsBuilder({
- Key? key,
- required Widget builder(]),
- required int animations,
- Duration duration = const Duration(milliseconds: 400),
- bool repeat = false,
- bool reverse = true,
- double delay = .25,
- Duration? reverseDuration,
- Curve? reverseCurve,
- Curve curve = Curves.linear,
- Function? endCallback,
- List<
Widget> ? children, - SequencedAnimationsController? controller,
Implementation
const SequencedAnimationsBuilder({
super.key,
required this.builder,
required this.animations,
this.duration = const Duration(milliseconds: 400),
this.repeat = false,
this.reverse = true,
this.delay = .25,
this.reverseDuration,
this.reverseCurve,
this.curve = Curves.linear,
this.endCallback,
this.children,
this.controller,
});