textEntityTypePre property

TextEntityTypePre? textEntityTypePre

Text that must be formatted as if inside a pre HTML tag

Implementation

TextEntityTypePre? get textEntityTypePre {
  if (this is TextEntityTypePre) {
    return this as TextEntityTypePre;
  }
  return null;
}