confirmAccountActivationByPin method

Future<void> confirmAccountActivationByPin(
  1. String email,
  2. String pinCode
)

The function confirmAccountActivationByPin takes an email and a pin code as parameters and confirms the acctivation of an account by a pinCode.

Args: email (String): A string representing the email address of the user. pinCode (String): The pinCode parameter is a string that represents the PIN code sent to email of the user that account needs to be activated.

Implementation

Future<void> confirmAccountActivationByPin(
    String email, String pinCode) async {
  return _methods.confirmAccountActivationByPin(email, pinCode);
}