Используйте метод getDocuments (), в результате вы получите querysnapshot. Получить DocumentSnapshot с .documents. Напечатайте их documentId в цикле.
QuerySnapshot querySnapshot = await Firestore.instance.collection("RecodeBook").getDocuments();
var list = querySnapshot.documents;
list.forEach((f) {
print(f.documentID);
});