Hi, I've a little a bit messed up with assigning p...
# announcements
m
Hi, I've a little a bit messed up with assigning properties in kotlin classes
Copy code
class A(opt1: String, opt2: String) {
val opt1:String <<<
val opt2:String <<<

init {
//do the needed init
}

}
How should I assign opt1 and opt2 with values from constructor?