StreamingText constructor
const
StreamingText({
- Key? key,
- required ValueNotifier<
String> valueNotifier, - TextStyle? style,
- TextAlign? textAlign,
- TextDirection? textDirection,
- bool? softWrap,
- TextOverflow? overflow,
- int? maxLines,
- bool selectable = false,
- bool markdownEnabled = true,
- 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,
});