If you had an interface that you're implementing i...
# announcements
k
If you had an interface that you're implementing instead this would be a bit cleaner:
Copy code
interface Foo {
    val value: String
}

class Example : Foo {
    override var value = ""
        private set
}