Hi Folks , How do I reference `this` inside SAM in...
# android
a
Hi Folks , How do I reference
this
inside SAM interface ? Pasting code as I don’t know why I am not getting option to attach Images . this@Observer gives error
'this' is not defined in this context
Copy code
val observer = Observer<T> {
        data = it
        latch.countDown()
        this@getOrAwaitValue.removeObserver(this@Observer)
    }