At the documentation I found this snippet ``` clas...
# android
j
At the documentation I found this snippet
Copy code
class User {
    var name: String by Delegates.observable("<no name>") {
        prop, old, new ->
        println("$old -> $new")
    }
}
But I'm not sure of how can I make a function return a observable.