downloadVideoImage static method

Future<SendMessageResult> downloadVideoImage(
  1. Map json
)

下载视频首帧图片

Implementation

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