getList<T extends FireStoreDoc> abstract method

Future<List<T>> getList<T extends FireStoreDoc>(
  1. CollectionReference<T> colRef
)

A method that retrieves all documents from a Firestore collection specified by a colRef

Implementation

Future<List<T>> getList<T extends FireStoreDoc>(
  CollectionReference<T> colRef,
);