I have a collection of normalads and I'm trying to read all document in this collection
I have a collection of normalads and I'm trying to read all document in this collection
Try this:
Future<List<NormalAdModel>> getNormalAdsFuture() async{
final docs = await (firestore.collection("normalads").get()).docs;
return docs.map((e) => NormalAdModel.fromMap(Map.from(e.data()!))).toList();
}