streamAll method

  1. @override
Stream<List<T>> streamAll()
override

Get a list of all documents from the collection as a list

Refreshes automatically when new data is added/removed from the collection

See: StreamBuilder

Implementation

@override
Stream<List<T>> streamAll() {
  return ref.snapshots().toListT();
}