вы можете получить ref_value, как это
await Firestore.instance
.collection('collection')
.where('ref', isEqualTo: 'what you want to query')
.getDocuments()
.then((doc) {
ref_value = doc.documents[0]['ref'];
});
получить другой с этой ссылкой
await Firestore.instance
.collection('collection')
.where('ref', isEqualTo: ref_value)
.limit(1)
.getDocuments()
.then((doc) {
ref_value = doc.documents[0]['ref'];
});
этот код может помочь вам опробовать вещи дальше ..