addMessage method
Adds a new message to this conversation.
The message is added to the end of the messages list,
and the updatedAt timestamp is automatically updated.
Implementation
Conversation addMessage(final ChatMessage message) =>
copyWith(messages: [...messages, message], updatedAt: DateTime.now());