sendResetPasswordEmail abstract method

Future<void> sendResetPasswordEmail(
  1. String? email
)

Sends a password reset email to the provided address (optional).

This method should be implemented by the subclass based on the specific authentication provider's logic. Some providers might not require an email address for password reset.

Implementation

Future<void> sendResetPasswordEmail(String? email);