Closed hwh97 closed 5 years ago
///上传 /// /// key 保存到七牛的文件名 upload(String filepath, String token, String key) async { var res = await _channel.invokeMethod('upload', <String, String>{"filepath": filepath, "token": token, "key": key}); print(res); } 这里是不是缺少了return res ?
根本就没有 return res,这样的插件怎么就发布了?
0.1.4版本upload添加返回值
///上传 /// /// key 保存到七牛的文件名 upload(String filepath, String token, String key) async { var res = await _channel.invokeMethod('upload', <String, String>{"filepath": filepath, "token": token, "key": key}); print(res); } 这里是不是缺少了return res ?