I did upgrade my flutter project to flutter2, as a part of the upgrade I did upgrade chopper version from 3.0.1 to 4.0.1 nullsafety. After that the command flutter packages pub run build_runner watch --delete-conflicting-outputs
start to show errors which is very hard to understand because I cannot even find the code which is the error messages points to.
Here is the error output fragment:
[INFO] 16.1s elapsed, 35/51 actions completed.
[SEVERE] chopper_generator:chopper_generator on lib/data/api/my_api.dart:
Could not format because the source could not be parsed:
line 29, column 53 of .: Expected to find ')'.
╷
29 │ final $parts = <PartValue>[PartValue<String*>('name', name), PartValueFile<MultipartFile>('file', file)];
│ ^
╵
line 124, column 63 of .: Expected to find '}'.
╷
124 │ @override Future<Response<BuiltList<Places>>> getPlace({String* jwtToken}) { final $url = 'place';
│ ^
╵
line 55, column 55 of .: Expected to find ')'.
In the source code lib/data/api/my_api.dart at 29 line, there is nothing like the message showing, but there is:
I did search all project files and have not found any files containing code error messages showing me. Looking at the variable types and names it can be assumed the lines, matching the errors in the my_api.dart code is:
@multipart
Future<Response<Users>> postMe({
@Header('Authorization') String jwtToken,
@Part("name") String name,
@PartFile("file") MultipartFile file
});
But I cannot figure out whats wrong with them?
---update---
Found an answer https://www.gitmemory.com/issue/lejard-h/chopper/249/824860498 I have generated my chopper api after adding this to pubspec.yaml
environment:
sdk: ">=2.12.0 <3.0.0"
dependency_overrides:
analyzer: ^1.4.0
hive_generator:
quiver: ^3.0.1
But this is not a solution for me because my project is not nullsafey, It is using sdk>=2.9.0. It seems there is only the hard way, it is to do nullsafety migration((. Thanks