snapshots method

Stream<QuerySnapshot> snapshots({
  1. bool includeMetadataChanges = false,
})

Notifies of query results at this location.

Implementation

Stream<QuerySnapshot> snapshots({bool includeMetadataChanges = false}) =>
    _delegate
        .snapshots(includeMetadataChanges: includeMetadataChanges)
        .map((item) {
      return QuerySnapshot._(firestore, item);
    });