-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrating to null safety AND android embedding v2 #81
base: master
Are you sure you want to change the base?
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.