I'm using the below to code to delete the doc, but the delete operation is not done in cloudfirestore databased,still the data exist after delete, Please guide. Collection id:users,
document id: p0lncbJnslgsvtUHW7zcbauk62F3
My cloud firestore version: cloud_firestore: ^0.13.4+2
await Firestore.instance
.collection(collectionId)
.document(documentId)
.delete();