resendVerification method

  1. @override
Future<void> resendVerification(
  1. String? correlationId,
  2. String recipientId
)
override

Resends verification.

  • correlation_id (optional) transaction id to trace execution through call chain.
  • recipientId a recipient id of the email settings to be resend verification Return Future that receives null for success. Throws error.

Implementation

@override
Future<void> resendVerification(
    String? correlationId, String recipientId) async {
  return null;
}