shareWebAndImgUrl function
分享网页,并附带一个图片URL作为缩略图。
Implementation
Future<void> shareWebAndImgUrl({
String title = '',
String desc = '',
required String wepageUrl,
required String imageUrl,
}) async {
await _channel.invokeMethod("shareWebUrl", {
"title": title,
"desc": desc,
"wepageUrl": wepageUrl,
"imageUrl": imageUrl,
});
}