showShareDialog function

void showShareDialog(
  1. dynamic context,
  2. dynamic item,
  3. dynamic type,
  4. dynamic title,
  5. {dynamic lead}
)

Implementation

void showShareDialog(context, item, type, title, {lead}) {
  shareContent(context,
      message: formatShareText(item, lead: lead),
      title: formatShareSubject(item, type, title),
      url: formatShareURL(item));
}