-2
I’m trying to randomly pull my data from the firestore cloud but I’m not getting it, does anyone know how to do it using ID?
getQustoes(String simuladoId) async{
return await FirebaseFirestore.instance
.collection("Simulado")
.doc(simuladoId)
.collection("QNA")
.orderBy("id")
.get();
}