snapshots method

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

Implementation

Stream<DocSnapshot<D>> snapshots({
  bool includeMetadataChanges = false,
}) {
  return raw
      .snapshots(
        includeMetadataChanges: includeMetadataChanges,
      )
      .map((ds) => DocSnapshot<D>._fromSnapshot(_firestore, ds));
}