func logInUser(withEmail email: String, password: String, completion: AuthDataResultCallBack?) { Auth.auth().signIn(withEmail: email, password: password, completion: completion) }
But I keep getting an error saying: Cannot find type 'AuthDataResultCallBack' in scope
I have firebase imported but not sure where to look now.