showFeedItemDetails method
- SocialFeed socialFeed
Implementation
void showFeedItemDetails(SocialFeed socialFeed) {
showDialog(
context: context,
builder: (BuildContext context) {
return DiscoverPopUp(socialFeed: socialFeed);
},
);
}