I want to change current user password using Firebase in Flutter. Can any one help me on how to implement change password method?
This should work according to the latest version of firebase: final FirebaseAuth firebaseAuth = FirebaseAuth.instance; User currentUser = firebaseAuth.currentUser; currentUser.updatePassword("newpassword").then((){}).catchError((err){})
final FirebaseAuth firebaseAuth = FirebaseAuth.instance;
User currentUser = firebaseAuth.currentUser;
currentUser.updatePassword("newpassword").then((){}).catchError((err){})