7 lines
156 B
Kotlin
7 lines
156 B
Kotlin
package utils
|
|
|
|
import am.ik.yavi.core.ConstraintViolations
|
|
|
|
val ConstraintViolations.firstInvalid: Any?
|
|
get() = this.violations().firstOrNull()?.name()
|