This is firestore database structure. I'm trying to call these data in my flutter application. but I only get value upto document which is chatroom/9000. But i want collection of document 9000. How do i call it?
This is how i called query
await _firestore .collection('chatroom') .doc(UUID) .get() .then((value) { });
