resendUserConfirmation method

Future<void> resendUserConfirmation(
  1. String email
)

Resend the confirmation email for a user to the given email.

Implementation

Future<void> resendUserConfirmation(String email) {
  return realmCore.emailPasswordResendUserConfirmation(app, email);
}