how to send verification mail in firebase and forgot password link in firebase flutter version
firebase_auth plugin I don't found any forgot password method is there any other way for both
Looking at current master, I don't think it is implemented yet. Perhaps file a feature request in flutter issue tracker?
fire base is providing the option to reset the password of the user this query will send a url for reseting the password to user mail id
var auth = firebase.auth();
var emailAddress = "<Mail_id >";
auth.sendPasswordResetEmail(emailAddress).then(function() {
// Email sent.
console.log("welcome")
}).catch(function(error) {
// An error happened.
});