If by input, you mean in the constructor, then som...
# getting-started
a
If by input, you mean in the constructor, then something like this:
Copy code
class Foo(dateString: String) {
    val date = LocalDate.parse(dateString)
}