validatePinWithPolicy
Validates the supplied pin against the pin policy enforced by the tokenserver, the policy will be checked on the device and the pin will never be sent over the internet.
Future<void> validatePinWithPolicy(String pin);
Example
Your suggested change has been received. Thank you.
Validates the supplied pin against the pin policy enforced by the tokenserver, the policy will be checked on the device and the pin will never be sent over the internet.
Future<void> validatePinWithPolicy(String pin);
Example
await Onegini.instance.userClient
.validatePinWithPolicy(pin)
.catchError((error) {
if (error is PlatformException) {
clearAllDigits();
showFlutterToast(error.message);
}
});
Thank you! Your suggestion has been submitted.
https://thales.na.market.dpondemand.io/docs/dpod/services/kmo….