frank
02/06/2017, 8:47 PMvar ratio: Double = 0.0
set(value) {
field = value
invalidate()
}
Is it possible to skip this when setting the field from inside the class itself? Or should I just remove that `set`and create a new function fun setRatio(ratio: Double)
that invalidates it?