richTexts property

RichTexts? richTexts

A concatenation of rich texts

Implementation

RichTexts? get richTexts {
  if (this is RichTexts) {
    return this as RichTexts;
  }
  return null;
}