RichTextAnchorLink constructor

const RichTextAnchorLink({
  1. required RichText text,
  2. required String anchorName,
  3. required String url,
})

A link to an anchor on the same web page

Implementation

const RichTextAnchorLink({
  required this.text,
  required this.anchorName,
  required this.url,
});