I have the following code:
let storageRef = FIRStorage().reference(forURL: \"gs://slugbug-....appspot.com\") // dots intentional let imageRef = storageRef.ch
You are missing .storage().
.storage()
Check your line. It should be:
let storageRef = FIRStorage.storage().reference(forURL: "gs://slugbug-....appspot.com") // dots intentional
Hope it helps