After migrating to null safety:dataSnapshot.data.docs
; .docs
is underlined red.
I have tried dataSnapshot.data?.docs
, dataSnapshot.data!.docs
but still underlined red is there.
StreamBuilder(
stream: commentsReference
.doc(postId)
.collection("comments")
.orderBy("timestamp", descending: false)
.snapshots(),
builder: (context, dataSnapshot) {
if (!dataSnapshot.hasData) {
return loader();
}
List<CommentTile> comments = [];
dataSnapshot.data.docs.forEach((doc) {//.docs is underlined red
//tried dataSnapshot.data?.docs, dataSnapshot.data!.docs.
comments.add(CommentTile.fromDocument(doc));
});
return SingleChildScrollView(
child: Column(children: comments),
);
},
);
Maybe you have model like this (or must be)
and you have to change this