resendEmailVerification method
Resends the email verification for the provided email.
Implementation
Future<void> resendEmailVerification(String email) {
try {
return _functions
.httpsCallable('callables-sendEmailVerification')
.call({'email': email});
} catch (err) {
throw AuthDataServiceException(
message: err.toString(),
);
}
}