TextRoller constructor

const TextRoller({
  1. Key? key,
  2. required List<String> strings,
  3. Duration? waitDuration,
  4. Duration? transitionDuration,
  5. int? wait,
  6. int? transition,
  7. TextStyle? style,
})

Strings merge transition in an infinite loop animation

Implementation

const TextRoller({
  Key? key,
  required this.strings,
  this.waitDuration,
  this.transitionDuration,
  this.wait,
  this.transition,
  this.style,
}) : super(key: key);