toListT method

Stream<List<T>> toListT()

Get all non-null data from the QuerySnapshot documents

Implementation

Stream<List<T>> toListT() {
  return map(
    (snapshot) => snapshot.docs.toListT(),
  );
}