This message was deleted.
# kotlin-dsl
s
This message was deleted.
t
@snowe you need to add
get()
part to all your properties. When you are using
private val prop = "something"
it will be set during object creationg. If you logic depends on computing at runtime you need to specify this fact by using
private val prop get() = "computeit ${System.currentTimeMillis()
}”