isValid

Parameters

isValid

Whether the card number is valid according to the Luhn algorithm

Example:

when (event) {
is CardNumberTextFieldEvent.IsValid -> {
if (event.isValid) {
enableNextButton()
} else {
disableNextButton()
}
}
}