本文主要是介绍flutter Dio库的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.报错问题:最近更新Android Studio 4.0 连同Flutter 一起更新,导致原有项目运行报错:
Error: The method 'DioHttpHeaders.add' has fewer named arguments than those
Context: This is the overridden method ('add'). void add(String name, Object value,...
解决方法:打开pubspec.yaml 文件修改 dio 版本号,更行为最新版本(鼠标指向版本号时,会提示最新的版本号)完美解决;
# The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^0.1.3 更新一下最新版本
#添加网络请求库
dio: ^3.0.9 更新一下最新版本
————————————————
版权声明:本文为CSDN博主「SmileToLin」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/SmileToLin/article/details/106531343
这篇关于flutter Dio库的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!