addMessage method

Conversation addMessage(
  1. ChatMessage message
)

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(ChatMessage message) => copyWith(
      messages: [...messages, message],
      updatedAt: DateTime.now(),
    );