You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the Firestore operations return ApiFuture<T>. The method DocumentReference#getCollections() returns an Iterable<CollectionReference> but it should probably return ApiFuture<Iterable<CollectionReference>> since it calls over the network.
Most of the Firestore operations return
ApiFuture<T>. The methodDocumentReference#getCollections()returns anIterable<CollectionReference>but it should probably returnApiFuture<Iterable<CollectionReference>>since it calls over the network.