verifyEmail method

  1. @override
Future verifyEmail(
  1. String? correlationId,
  2. String recipientId,
  3. String code
)
override

Verifies an email.

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

Implementation

@override
Future verifyEmail(String? correlationId, String recipientId, String code) {
  return callCommand('verify_email', correlationId,
      {'recipient_id': recipientId, 'code': code});
}