firebase authentication in flutter using email password and username
I am trying to authenticate a user using email, password and username as additional info, but it's giving me an error saying: too many positional argument final userCredential = await FirebaseAuth.instance .createUserWithEmailAndPassword( email: email, password: password, AdditionalUserInfo(isNewUser: true, username: firstName)…