PinRegistrationCallback
During the Pin Registration flow, as described in Create Pin, the user will need to reply to the SDK with a Pin or deny the the pin registration request. The SDK provides the user with the following callback functions:
acceptAuthenticationRequest
In case the user wants to proceed with the pin registration and supply a pin to the SDK, the user can call:
Future<void> acceptAuthenticationRequest(String pin)
denyAuthenticationRequest
In case the the user wants to deny with the pin registration request, for example to cancel the registration, the user can call:
Future<void> denyAuthenticationRequest()