currently I have the following: ``` var value : Fo...
# random
k
currently I have the following:
Copy code
var value : Foo? = null

fun getValue(param: Bar) : Foo {
    return value ?: createValue(param).apply { value = this }
}