form-conductor
form-conductor copied to clipboard
Support Validation Priorities
We'll need to support priority values in form field annotations to specify the order in which they are validated
IDEA
@Form
data class FormData(
@Priority(2)
val emailAddress: String,
@Priority(1)
val name: String,
@Priority(3)
val countryCode: String,
@Priority(4)
val mobileNumber: String
)