content method
Shares remote image content by downloading it first, along with title and deep link.
Implementation
Future<void> content({
required String title,
required String imageUrl,
required String deepLinkUrl,
}) => delegate.content(
title: title,
imageUrl: imageUrl,
deepLinkUrl: deepLinkUrl,
);