DEV Community

Alexandre Freire
Alexandre Freire

Posted on • Updated on

Como deletar todos os documentos de uma coleção no Firestore com Flutter

firestore.collection('messages').getDocuments().then((snapshot) {
  for (DocumentSnapshot ds in snapshot.documents){
    ds.reference.delete();
  });
});
Enter fullscreen mode Exit fullscreen mode

Top comments (0)