Answers for "delete all documents from collection flutter firestore"

0

delete all documents from collection flutter firestore

//Dart
firestore.collection('messages').getDocuments().then((snapshot) {
  for (DocumentSnapshot ds in snapshot.documents){
    ds.reference.delete();
  });
});
Posted by: Guest on May-12-2021

Code answers related to "delete all documents from collection flutter firestore"

Browse Popular Code Answers by Language