Migrating to null safety AND android embedding v2#81
Migrating to null safety AND android embedding v2#81shinayser wants to merge 2 commits intohurshi:masterfrom
Conversation
|
Hi, in store_meromy.dart, you init an empty list : if (null == subKeyList) subKeyList = List.empty(); Empty list are not growable by default, the next line a add is made on that list, so the code crach |
Fixed! |
|
Getting that error when trying to run the app with this PR's version of dio-http-cache My initialization: My dependencies: |
|
Is this good for Flutter 2 as well which also incorporates #82 change of |
|
this PR compatible only with dio: 4.0.0-beta4 |
|
👋 Thanks for the work but I am a bit confused how how you got this working. The library is indeed technically updated to nullsafety but doesn't even compile as the dio 4 interceptor method signature changed. Did you forget to commit come changes, maybe? |
|
Hi, |
|
Guys I am on same boat as you... since the maintainer didn't provided a null safety version yet, I tried to do it myself. But seems that |
Migrating the app to null safety (flutter 2.0).
Also done the migration of the sample app to Android Embedding v2.