submitFingerprintFallbackToPin
This method is Android only as iOS handles this natively with the native prompt
If Fingerprint authorization can't be used - you can force the SDK to fallback to PIN. Please also refer to User authentication with system biometric authenticators for more information.
submitFingerprintFallbackToPin(): Promise<any>;
Example
OneWelcomeSdk.submitFingerprintFallbackToPin()
.then(() => {
console.log('Fallback success! ')
})
.catch(error => {
console.error('Fallback failed: ', error.message)
})