RichTextPlus constructor

RichTextPlus({
  1. Key? key,
  2. int maxLines = 1,
  3. bool isCenter = false,
  4. bool isExpanded = false,
  5. List<TextPlus>? texts,
})

Implementation

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