skip to Main Content

Unhandled Exception: NoSuchMethodError: Class 'FirebaseAuthException' has no instance getter '_message'

Help me pls. I have this error. 10Q Unhandled Exception: NoSuchMethodError: Class 'FirebaseAuthException' has no instance getter '_message'. E/flutter ( 5700): Receiver: Instance of 'FirebaseAuthException' E/flutter ( 5700): Tried calling: _message await _auth .signInWithEmailAndPassword( email: _emailTextEditingController.text.trim(), password: _passwordTextEditingController.text.trim(), ) .then((authUser)…

VIEW QUESTION

Firebase – How to extract individual values from Firestore getDocument request using Swift

let db = Firestore.firestore() let docRef = db.collection("users").document(result!.user.uid) docRef.getDocument { (document, error) in if let document = document, document.exists { let dataDescription = document.data().map(String.init(describing:)) ?? "nil" print("Document data: (dataDescription)") print() } else { print("Document does not exist") } } print("Document…

VIEW QUESTION
Back To Top
Search