downloadVideo static method

Future<SendMessageResult> downloadVideo(
  1. Map json
)

下载视频文件

Implementation

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