there have been talks about having overloaded sett...
# random
k
there have been talks about having overloaded setters on properties, which would be really really useful IMO
Copy code
class Div {
  var texts: List<String> = emptyList()
    set(value: List<String>)
    set(value: String) = set(listOf(value))
}