消息本体中提取出的所有 文本消息 的合并结果。
类似于:
messages.filterIsInstance<PlainText>().joinToString { it.text }
但是如果 messages 没有任何 PlainText 类型的消息元素,则会得到 null。
null