sendForgotPasswordEmail method
- String email
Sends a password reset email to the provided email address
Implementation
Future sendForgotPasswordEmail(String email) async {
try {
return await _auth.sendPasswordResetEmail(email: email);
} catch (e) {
return null;
}
}