let saveDocument = Firestore.firestore()
let docId = UserDefaults.standard.object(forKey: "docId") as! String
print(docId)
if let documentRefString = saveDocument.collection("Posts").document(docId) {}
at let documentRefString error message camee out.
Initializer for conditional binding must have Optional type, not 'DocumentReference'
Tell me How to fix this error.