Flutter - firebase_auth updateProfile method is not working
问题 I'm creating app using Flutter with Firebase. I have some weird issues. I'm creating authentication and it is working fine but when i try to add some collections to my Firestore Database, the record of displayName is set to null. Future<FirebaseUser> createUser(email, password, displayName) async { final FirebaseUser user = await _auth.createUserWithEmailAndPassword( email: email, password: password); UserUpdateInfo info = new UserUpdateInfo(); info.displayName = displayName; _auth