I have 2 collections in cloud firestore and want to use both of them trough one field of my product 'userBids' which I'm using document reference:
Ürünler(Products)
Problem I want to reach my user from my 'userBids' field in my product model, but getting error below;
Class 'DocumentReference' has no instance method '[]'.
Receiver: Instance of 'DocumentReference'
Tried calling: )
Text(data[0]['userBids'][index]['user']['nickname']
So how can I reach one collection from another collection in Cloud Firestore in Flutter?

