sendTextMessage method

Future<String> sendTextMessage(
  1. String message,
  2. String jid,
  3. String replyMessageId, {
  4. String? topicId,
})

This method is used to send the text message.

Implementation

Future<String> sendTextMessage(
    String message, String jid, String replyMessageId,
    {String? topicId}) {
  throw UnimplementedError('has not been implemented.');
}