How to share a link and a finished text using Share

I use the Share package so that when I click on the icon I can share the link. I would also like that when I share my link, I have a ready-made text description of this link. I tried to do this through Subject, but the result is the link itself without text.

 onTap: () {
  Share.share('https://www.youtube.com', subject:  'Nice Service');
 },

>Solution :

You can use this:

await Share.share(
        'https://www.youtube.com' + ',' + 'Nice Service',
      );

Leave a Reply