I am new to Firebase and I am trying to explore it. I already know i can make a reference to database and pull some data like: firstName, email etc. However, I have a function for uploading images to storage. I have a reference to storage but i cannot find function for storage similar to the one for database so i can pull images or their names:
DataService.instance.usersRef.observeSingleEvent(of: .value) { (snapshot: DataSnapshot) in }
Any help would be appreciated.