CustomRichTextWidget constructor

const CustomRichTextWidget({
  1. Key? key,
  2. String? title1,
  3. String? title2,
  4. String? title3,
  5. String? title4,
  6. String? title5,
  7. String? title6,
  8. String? title7,
  9. dynamic onSubtitleTap2()?,
  10. dynamic onSubtitleTap4()?,
  11. dynamic onSubtitleTap6()?,
  12. TextAlign textAlign = TextAlign.center,
})

Implementation

const CustomRichTextWidget({
  Key? key,
  this.title1,
  this.title2,
  this.title3,
  this.title4,
  this.title5,
  this.title6,
  this.title7,
  this.onSubtitleTap2,
  this.onSubtitleTap4,
  this.onSubtitleTap6,
  this.textAlign = TextAlign.center,
}) : super(key: key);