I'm trying to load a QuerySnapshot but filter on if a field "f_ID" is within a local List. If it is do not add it.
But with the .where I can not access my local list object. Any way around that?
List<Map> the_List = new List();
// map elements format: {'f_ID': xxxx, 'date': xxxx}
// date is irrelevant to this search
QuerySnapshot querySnapshot = await Firestore.instance
.collection('Queue')
.orderBy('clo_Score')
.limit(25)
.where("f_ID" ??????)
.getDocuments();