onValidCredentialsProvided abstract method Null safety

void onValidCredentialsProvided()

This method is invoked when valid PIN credentials were provided and verified locally.

The method is invoked after verifyPin has been invoked and PinUserVerificationHandler.verifyPin is invoked in the PinUserVerificationHandler of verifyPin and the provided PIN credentials are valid.

This method can be used for instance to hide the UI used to ask for credentials to the user (some text fields to get PIN credentials) and then display some progress message indicating that the operation is ongoing.

Note that invoking this method does not mean that the UAF operation completed successfully (this is notified through onSuccess methods once the FIDO UAF server validates the request generated with the credentials).

Implementation

void onValidCredentialsProvided();