StreamingText constructor

const StreamingText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. Widget textBuilder(
    1. String text,
    2. TextStyle? style
    )?,
})

Implementation

const StreamingText({
  super.key,
  required this.text,
  this.style,
  this.textBuilder,
});