sendChatMessage method

Future<RemoteMessage> sendChatMessage(
  1. String content
)

Send a chat message to the remote session.

Implementation

Future<RemoteMessage> sendChatMessage(String content) {
  return sendRequest('chat', {'content': content});
}