SimpleRichText constructor

SimpleRichText(
  1. String text, {
  2. String? chars,
  3. BuildContext? context,
  4. bool? fussy,
  5. bool logIt = false,
  6. int? maxLines,
  7. TextSpan? pre,
  8. TextSpan? post,
  9. TextStyle? style = const TextStyle(),
  10. TextAlign? textAlign,
  11. TextOverflow? textOverflow,
  12. double? textScaleFactor,
})

Implementation

SimpleRichText(this.text,
    {this.chars,
    this.context,
    this.fussy,
    this.logIt = false,
    this.maxLines,
    this.pre,
    this.post,
    this.style = const TextStyle(),
    this.textAlign,
    this.textOverflow,
    this.textScaleFactor});