confirmVerificationCodeForAttribute abstract method

Future<void> confirmVerificationCodeForAttribute(
  1. String attribute,
  2. String code
)

Verifies the given attribute with the code that was sent to the user

Implementation

Future<void> confirmVerificationCodeForAttribute(
  // the user attribute to verify
  String attribute,
  // the code to verify the attribute with
  String code,
);