FastRichTextLink constructor

const FastRichTextLink({
  1. Key? key,
  2. required String linkText,
  3. required String prefixText,
  4. Color? linkColor,
  5. VoidCallback? onTap,
  6. double? fontSize,
})

Implementation

const FastRichTextLink({
  super.key,
  required this.linkText,
  required this.prefixText,
  this.linkColor,
  this.onTap,
  this.fontSize,
});