shareImageUrl function

Future<void> shareImageUrl(
  1. String url
)

通过图片URL分享到支付宝。

Implementation

Future<void> shareImageUrl(String url) async {
  await _channel.invokeMethod("shareImageUrl", {
    "imageUrl": url,
  });
}