PinAuthenticationCallback
During the Pin Authentication flow, as described in Authenticate using Pin Flow, the user will need to reply to the SDK with a Pin or deny the the pin authentication request. The SDK provides the user with the following callback functions:
acceptAuthenticationRequest
In case the user wants to proceed with the pin authentication 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 authentication request, for example to cancel the authentication, the user can call:
Future<void> denyAuthenticationRequest()