RichTextWidget constructor

RichTextWidget({
  1. required List<TextSpan> list,
  2. TextOverflow? overflow,
  3. int? maxLines,
  4. TextAlign? textAlign,
  5. TextDirection? textDirection,
  6. StrutStyle? strutStyle,
  7. Locale? locale,
  8. Key? key,
})

Implementation

RichTextWidget({
  required this.list,
  this.overflow,
  this.maxLines,
  this.textAlign,
  this.textDirection,
  this.strutStyle,
  this.locale,
  super.key,
});