StreamingText constructor

const StreamingText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Duration speed = const Duration(milliseconds: 20),
  5. bool animate = true,
  6. VoidCallback? onComplete,
})

Implementation

const StreamingText({
  super.key,
  required this.text,
  this.style,
  this.speed = const Duration(milliseconds: 20),
  this.animate = true,
  this.onComplete,
});