skip to Main Content

Firebase conditions in where – Flutter

QuerySnapshot querySnapshot = await FirebaseFirestore.instance .collection('stations') .where('norequest', isGreaterThan: 9) .get(); Here i want get if 'norequest' is a whole number like 10 , 20 , 30 , 40 something like this and greater than 5 ? How can i get…

VIEW QUESTION
Back To Top
Search