supaham
07/18/2017, 5:00 AMinterface Cancellable { boolean isCancelled(); void setCancelled(boolean) }
In Kotlin if i try to do override var cancelled: Boolean = false
it says nothing to override. So I have to implement getter (is
prefix, not get
) and setter, is there around this?