sendImageMessage static method

dynamic sendImageMessage(
  1. String jid,
  2. String filePath,
  3. String? caption,
  4. String? replyMessageID, [
  5. String? imageFileUrl,
])

Implementation

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