richTextAnchorLink property

RichTextAnchorLink? richTextAnchorLink

A link to an anchor on the same web page

Implementation

RichTextAnchorLink? get richTextAnchorLink {
  if (this is RichTextAnchorLink) {
    return this as RichTextAnchorLink;
  }
  return null;
}