Sharing Link on LinkedIn from Flutter and Web gives different results

Issue I am trying to share a Link of webpage on LinkedIn from my Flutter app, I have created below function for that: void _shareOnLinkedIn() async { final String linkedInShareUrl = "https://stgappnavigator.parkstreet.com/marketplace/details/${_catalogStore.summaryInfo?.data?[widget.productIndex].id}"; final String encodedUrl = Uri.encodeFull(linkedInShareUrl); final String linkedInUrl

Continue reading