richTextIcon property

RichTextIcon? richTextIcon

A small image inside the text

Implementation

RichTextIcon? get richTextIcon {
  if (this is RichTextIcon) {
    return this as RichTextIcon;
  }
  return null;
}