requestChangePassword method
- String email,
- BuildContext context
override
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
@override
Future<RequestPasswordResponse> requestChangePassword(
String email,
BuildContext context,
) async =>
const RequestPasswordResponse(
requestSuccesfull: true,
);