downloadImage static method

Future<SendMessageResult> downloadImage(
  1. Map json
)

下载图片文件

Implementation

static Future<SendMessageResult> downloadImage(Map json) async {
  Map map = await _channel.invokeMethod("downloadImage",json);
  return SendMessageResult.convertFromMap(map);
}