shareImageFromUrl static method

Future<void> shareImageFromUrl(
  1. String? imageUrl,
  2. String? text
)

Implementation

static Future<void> shareImageFromUrl(String? imageUrl, String? text) async {
  if (kIsWeb) {
    String? value =
        text != null && text.isNotEmpty ? '$text - $imageUrl' : imageUrl;
    await Clipboard.setData(ClipboardData(text: value));
    showFlushBar(value: true, textTrue: "Texto copiado");
  } else {
    Uint8List? bytes =
        await (ModernFormDownloadHelper.downloadWithProgress(imageUrl));
    if (bytes != null) {
      await shareImage(bytes, text);
    }
  }
}