To help me better understand Flutter and Firebase, I\'m making a list sharing app. I\'m working on the list home screen that will show a reorderable list tile view with a tile f
There is no method in the Firestore client-side SDKs to get all collections (or subcollections under a specific document). Such API does exist in the server-side SDKs, but not in the client-side SDKs.
See:
So you'll need to know the collections already, typically by changing your data model. For example by creating a document for each list's metadata, and then storing the list items in a subcollection with a known name under that document. That way you can get all lists by querying for the documents, which is possible within the API.