'sending text and multiple images to whatsapp flutter on IOS its not workin

I want to send multiple images alongside the text on WhatsApp, the text is not a problem if it's going to be repeated on every image or just written once,

currently, I'm using whatsapp_share2 package and applying this code; it works perfectly fine on Android devices, but on ios, it's not running

List<String> addFiles = [];  //path to some images in local storage
await WhatsappShare.shareFile(
                text: "hello, i want to see these items",
                phone: 'Phone_number', //phone number with country code
                filePath: addfiles,
              );


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source