poohbar
05/06/2017, 12:58 AMthis into one of the properties I have in my class.. is there anything better or more idiomatic I could do than:
class Main {
lateinit var manager: Manager
init {
manager = Manager(this)
}
}umar
05/06/2017, 6:43 AMlazy delegate. val manager by lazy { Manager(this) }