As you can see in the picture, collection 'Communities' got multiple documents inside of it which I managed to read all the data that is inside of it by applying this line of code:
late QuerySnapshot Comms = await _firestore.collection('User').doc(User.userID).collection("Communities").get();
then applied this for the needed fields
Text( Comms.docs[index].get("nameOfCommunity").toString(),),
but how can I get the ID of the collection that I got the data from?