sendImageMessage static method

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

Implementation

static sendImageMessage(String jid, String filePath, String? caption, String? replyMessageID, {String? imageFileUrl, String? topicId}) {
  return FlyChatFlutterPlatform.instance.sendImageMessage(jid, filePath, caption, replyMessageID, imageFileUrl: imageFileUrl, topicId: topicId);
}