sendImageMessage method

Future<String> sendImageMessage(
  1. String jid,
  2. String filePath,
  3. String? caption,
  4. String? replyMessageID, {
  5. String? imageFileUrl,
  6. String? topicId,
})

This method is used to send the image message.

Implementation

Future<String> sendImageMessage(
    String jid, String filePath, String? caption, String? replyMessageID,
    {String? imageFileUrl, String? topicId}) {
  throw UnimplementedError('has not been implemented.');
}