stream method

  1. @override
Stream<T?> stream(
  1. DocumentId docId
)
override

Gets a stream of the document requested

Implementation

@override
Stream<T?> stream(DocumentId docId) {
  return ref.doc(docId.docId).snapshots().toMaybeT();
}