requestChangePassword abstract method

Future<RequestPasswordResponse> requestChangePassword(
  1. String email,
  2. BuildContext context
)

requestChangePassword is used to request a password reset. If the request is successful, the response will contain a RequestPasswordResponse with requestSuccesfull set to true.

Implementation

Future<RequestPasswordResponse> requestChangePassword(
  String email,
  BuildContext context,
);