При доступе к подколлекциям следует ли использовать такой код:
DocumentSnapshot userSnapshot = await Firestore.instance
.collection('users')
.document(userId)
.collection('shoppingLists')
.document(listName)
.get();
или этот:
DocumentSnapshot userSnapshot = await Firestore.instance
.collection('users/$userId/shoppingLists')
.document(listName)
.get();
?
I предпочитают первый стиль. Они переводят на один и тот же ввод / вывод?