I have a class that has several embedded arrays as well as a couple of objects. I\'m using Flutter and can\'t figure out how to read/write to Cloud Firestore.
I can r
If you came here because of List is not of type List error while reading data from firestore, you can just use List.castFrom
List is not of type List
List.castFrom
Example: List cards = List.castFrom(cardsListFromFirebase);
List cards = List.castFrom(cardsListFromFirebase);
Checkout Flutter firebase, List is not of type List