documentStream method

Stream<DocumentSnapshot<Object?>> documentStream(
  1. String collectionPath,
  2. String docId
)

Implementation

Stream<DocumentSnapshot> documentStream(String collectionPath, String docId) {
  return _db.collection(collectionPath).doc(docId).snapshots();
}