TextAnimatorSequence constructor

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

Implementation

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