WidgetAnimatorSequence constructor

const WidgetAnimatorSequence({
  1. Key? key,
  2. required List<WidgetAnimator> children,
  3. bool? tapToProceed,
  4. bool? loop,
  5. Duration? transitionTime,
  6. Function? onPressed,
})

Implementation

const WidgetAnimatorSequence(
    {Key? key,
    required this.children,
    this.tapToProceed,
    this.loop,
    this.transitionTime,
    this.onPressed})
    : super(key: key);