If you are using flutter, you can do the following:
Firestore.instance.collection('your collection name').where(FieldPath.documentId, whereIn:[list containing multiple document IDs]).getDocuments();
This will return a Future containing List
which you can iterate as you feel fit.