RichTextPlus constructor

RichTextPlus({
  1. Key? key,
  2. int? maxLines,
  3. bool isCenter = false,
  4. bool isExpanded = false,
  5. List<TextPlus>? texts,
  6. TextOverflow? overflow,
  7. bool? softWrap = true,
  8. TextAlign? textAlign,
})

Implementation

RichTextPlus({
  Key? key,
  this.maxLines,
  // custom
  this.isCenter = false,
  this.isExpanded = false,
  this.texts,
  this.overflow,
  this.softWrap = true,
  this.textAlign,
  // this.mainTextStyleX,
}) : super(key: key);