FirebaseFirestore.instance
.collection("Orders")
.where('ostatus', isEqualTo: "4")
.where('vid', isEqualTo: uid)
.orderBy("latestorder", descending: true)
.snapshots(),
Which change can i do in this code to get only previous one day data from firebase firestore flutter?
2
Answers
I tried it through this
you can use the below format to get a previous day, but you have to add a timestamp while the data is inserting data into firestore
If you want to only yest data :
Another is if you want to data in range formate