textParseModeMarkdown property

TextParseModeMarkdown? textParseModeMarkdown

The text uses Markdown-style formatting

Implementation

TextParseModeMarkdown? get textParseModeMarkdown {
  if (this is TextParseModeMarkdown) {
    return this as TextParseModeMarkdown;
  }
  return null;
}