stream method

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

Gets a stream of the document requested

Implementation

@override
Stream<Either<Failure, T?>> stream(DocumentId docId) {
  return guardStream(() => _collection.stream(docId));
}