stream method

Stream<QuerySnapshot<Object?>> stream(
  1. CollectionReference<Object?> ref
)

Implementation

Stream<QuerySnapshot> stream(CollectionReference ref) {
  return ref
  // .limit(limit) // TODO
      .snapshots();
}