Less than or equal

Validates that a value is numerically less than or equal to the specified value.

val max = 9

val numberTextField = LessThanOrEqualValidable(
    max,
    "The value must be <= $max"
)