docChanges property

List<DocumentChange> docChanges

An array of the documents that changed since the last snapshot. If this is the first snapshot, all documents will be in the list as Added changes.

Implementation

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