Closed shellderp closed 1 year ago
Previously, you had to write
data class Parameters( val x: String? = null, )
Now you can write
data class Parameters( val x: String?, )
Previously, you had to write
Now you can write