data class User(val name: String?, val email: String?) { | |
fun isValid() = !name.isNullOrBlank() && name.length > 3 | |
&& !email.isNullOrBlank() && email.length > 3 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment