many<T> abstract method

Future<List<T>> many<T>(
  1. List<String> documentIDs, {
  2. String? subcollection,
})

Reads multiple documents from the database and converts them to a list of the specified type.

Implementation

Future<List<T>> many<T>(List<String> documentIDs, { String? subcollection });