I have an idea firestore collection where documents of different users are stored, how can I select all documents of a specific user and delete?
I need to add delete account button, after pressed, all information of users was deleted.
FirebaseFirestore.instance.collection('ideas').get().then(
(value) {
value.docs.forEach((result) {
print(result.data()[email!]);
});
},
);