confirmSignUpCode abstract method

Future<bool> confirmSignUpCode(
  1. String username,
  2. String code
)

Confirm the registration of a particular username with the given code

Implementation

Future<bool> confirmSignUpCode(
  // the user's whose registration is to be verified
  String username,
  // the code that was sent for verification
  String code,
);