我在我的 flutter 应用程序中使用了改造,我也在使用 json_serialzable 来生成模型类。这是我的 pubspec:
dependencies:
flutter:
sdk: flutter
cupertino_icons: ^1.0.2
get: ^3.24.0
flutter_custom_clippers: ^1.1.2
font_awesome_flutter: ^8.11.0
firebase_core: ^0.7.0
firebase_auth: ^0.20.1
cloud_firestore: ^0.16.0+1
google_sign_in: ^4.5.9
chips_choice: ^2.0.1
logging: ^0.11.4
path_provider: ^1.6.27
hive: ^1.4.4+1
hive_flutter: ^0.3.1
retrofit: ^1.3.4+1
dio: ^3.0.10
json_annotation: ^3.1.0
dev_dependencies:
flutter_test:
sdk: flutter
hive_generator: ^0.8.2
retrofit_generator: ^1.3.7+5
build_runner: ^1.10.0
json_serializable: ^3.5.0
当我运行 flutter pub run build_runner build
--> 时,它成功地为包含 fromJson 和 toJson 的改造服务和模型生成了零件文件,但在服务类中出现错误,即 Response 没有方法 fromJson (响应不是模型类(例如下图中的用户模型):
我尝试在构建时将 pubspec 中的版本更改为任何但相同的结果。任何帮助都非常感谢,因为我坚持这一点,我更喜欢使用带有 dio 的改造而不是斩波器。