7 lines
140 B
Kotlin
Vendored
7 lines
140 B
Kotlin
Vendored
// ClassWithConstructorAndProperties
|
|
|
|
class ClassWithConstructorAndProperties(
|
|
val nullable: String?,
|
|
val notNull: String
|
|
)
|