resendPasswordEmail method

Future<Result<Boolean>> resendPasswordEmail()

Resend Password Email.

ID: 7a7f2a15.

Implementation

Future<Result<Boolean>> resendPasswordEmail() async {
  // Preparing the request.
  final request = AccountResendPasswordEmail();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}