ChatThreadProcessingSweepText constructor

const ChatThreadProcessingSweepText({
  1. Key? key,
  2. required String text,
  3. required TextStyle style,
  4. bool animate = true,
  5. int? maxLines,
  6. TextOverflow? overflow,
  7. bool? softWrap,
  8. TextAlign? textAlign,
})

Implementation

const ChatThreadProcessingSweepText({
  super.key,
  required this.text,
  required this.style,
  this.animate = true,
  this.maxLines,
  this.overflow,
  this.softWrap,
  this.textAlign,
});