skip to Main Content

How to combine two firestore queries in Flutter

I want to combine two firestore queries from the same collection. I want the result combination to be a Query. var a = lessons .withConverter<Lesson>( fromFirestore: (snapshot, _) => Lesson.fromFirestore(snapshot), toFirestore: (Lesson lesson, options) => lesson.toFirestore(), ) .where('private', isEqualTo: false);…

VIEW QUESTION
Back To Top
Search