Replies: 1 comment 3 replies
-
You need to do: - final Stream<QuerySnapshot> snapshots = query.snapshots();
+ final Stream<QuerySnapshot<Map<String, dynamic>>> snapshots = query.snapshots(); |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm struggling trying to decipher withConvert and the migration guide and what I need to update in the following code block, which breaks when I upgrade to 2.0.0.
What should I be changing
Map<String, dynamic>? data
to?This is the error I receive when I try to run my app. The issue is not caught before run in AS.
Beta Was this translation helpful? Give feedback.
All reactions