sendChatMessage method
Send a chat message to the remote session.
Implementation
Future<RemoteMessage> sendChatMessage(String content) {
return sendRequest('chat', {'content': content});
}
Send a chat message to the remote session.
Future<RemoteMessage> sendChatMessage(String content) {
return sendRequest('chat', {'content': content});
}