getRawText method

String? getRawText()

Gets the raw text content without any entity processing.

This method returns the complete text from message, caption, or channel post without any entity-based modifications.

Implementation

String? getRawText() {
  return _getEntityData()?.text;
}