Get only text content from all messages.
List<String> get textContent { return messages .where((m) => m.text != null) .map((m) => m.text!) .toList(); }