StreamingText constructor

const StreamingText({
  1. Key? key,
  2. required ValueNotifier<String> valueNotifier,
  3. TextStyle? style,
  4. TextAlign? textAlign,
  5. TextDirection? textDirection,
  6. bool? softWrap,
  7. TextOverflow? overflow,
  8. int? maxLines,
  9. bool selectable = false,
  10. bool markdownEnabled = true,
  11. VoidCallback? onComplete,
})

Implementation

const StreamingText({
  super.key,
  required this.valueNotifier,
  this.style,
  this.textAlign,
  this.textDirection,
  this.softWrap,
  this.overflow,
  this.maxLines,
  this.selectable = false,
  this.markdownEnabled = true,
  this.onComplete,
});