Imagine our Drawable has one more setter:
var typeface: Typeface?
get() = paint.typeface
set(typeface) {
if (paint.typeface != typeface) {
paint.typeface = typeface
paint.shader = null
________________
}
}
What do we need to add if we want it to work properly?