Situation:
I have a class with lateinit
fields, so they are not present in the constructor:
class ConfirmRequest() {
lateinit var playerId: String
}
I'd like to have a toString()
method with all fields and don't want to write it manually, to avoid boiler print. In Java I'd use the Lombok @ToString
annotation for this problem.
Question:
Is there any way to implement it in Kotlin?
See Question&Answers more detail:os