wonder, why property initialization is required in...
# getting-started
d
wonder, why property initialization is required in this case:
Copy code
var activeDrawable: Drawable // "property must be intialized" error here
        set(value) {
            field = value
            invalidate()
        }
    init {
        <...>
        activeDrawable = <...>
        <...>
    }