changePin
Once authenticated, a user is able to change it's PIN. This method starts the flow. For further actions please refer to Change PIN for more details.
changePin(): Promise<void>
Example
OneWelcomeSdk.changePin()
.then(() => {
console.log('Change Pin action succeed!')
})
.catch(error => {
console.log('Change Pin action failed!: ', error.message)
})