richTextReference property

RichTextReference? richTextReference

A reference to a richTexts object on the same web page

Implementation

RichTextReference? get richTextReference {
  if (this is RichTextReference) {
    return this as RichTextReference;
  }
  return null;
}