requestChangePassword method

  1. @override
Future<RequestPasswordResponse> requestChangePassword(
  1. String email,
  2. 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,
    );