chat property

Chat get chat

Get the Chat instance from the closest ChatProvider ancestor.

final chat = context.chat;
await chat.sendMessage(conversationId: '123', content: 'Hello!');

Implementation

Chat get chat => ChatProvider.of(this);