SequencedAnimationsBuilder constructor

const SequencedAnimationsBuilder({
  1. Key? key,
  2. required Widget builder(
    1. List<double> values, [
    2. List<Widget>? children
    ]),
  3. required int animations,
  4. Duration duration = const Duration(milliseconds: 400),
  5. bool repeat = false,
  6. bool reverse = true,
  7. double delay = .25,
  8. Duration? reverseDuration,
  9. Curve? reverseCurve,
  10. Curve curve = Curves.linear,
  11. Function? endCallback,
  12. List<Widget>? children,
  13. 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,
});