shareImageUrl function
通过图片URL分享到支付宝。
Implementation
Future<void> shareImageUrl(String url) async {
await _channel.invokeMethod("shareImageUrl", {
"imageUrl": url,
});
}
通过图片URL分享到支付宝。
Future<void> shareImageUrl(String url) async {
await _channel.invokeMethod("shareImageUrl", {
"imageUrl": url,
});
}