docs property

Gets a list of all the documents included in this snapshot.

Implementation

List<QueryDocumentSnapshot> get docs => _delegate.docs
    .map((documentDelegate) =>
        QueryDocumentSnapshot._(_firestore, documentDelegate))
    .toList();