mapList<T extends DocData> method

TypedQuery<T> mapList<T extends DocData>(
  1. Mapper<List<DocSnapshot<D>>, List<DocSnapshot<T>>> mapper
)

mapper is called after fetching documents.

Implementation

TypedQuery<T> mapList<T extends DocData>(
    Mapper<List<DocSnapshot<D>>, List<DocSnapshot<T>>> mapper) {
  return _MapList(
    firestore: _firestore,
    inner: _inner,
    mapper: mapper,
  );
}