📅  最后修改于: 2022-03-11 14:48:06.384000             🧑  作者: Mango
Stream> getSomeoneCommentsList(
{@required String sellerId}) {
return _fbd
.collection('comments')
.where('sellerId', isEqualTo: sellerId)
.snapshots()
.map((qSnap) => qSnap.docs
.map((doc) => VehicleCommentSessionModel.fromJson(doc.data()))
.toList());
}