I have a collection 'Cart' in firebase cloud fire store, in that collection I have 10 documents.
{1,2,3,4,5,6,7,8,9,10} these are the documents name or id.
I have a list view where I am getting the ids of the document and from that list I am selecting and trying to delete those.
I am trying to delete multiple documents from that collection.
I am trying to delete documents(6,2,7,4,5).
in firebase docs there is only how to delete single and multiple documents from fire store
so how can to implement this in flutter??
please help