IsValid
Event triggered when the security code number validation status changes. validation, helping to determine if the input is valid.
Parameters
isValid
Whether the security code is valid according payment methods specification
Example:
when (event) {
is SecurityCodeTextFieldEvent.IsValid -> {
if (event.isValid) {
enableNextButton()
} else {
disableNextButton()
}
}
}Content copied to clipboard