I think that it is possible to do `class MyEvent(v...
# tornadofx
v
I think that it is possible to do
class MyEvent(val param: Any) : FXEvent()
, but only in case, where we don't need to determine type of
param
, or am I wrong? If I just do so, then I guess that I can't further
when (param) { is String -> ...; Integer -> ...; else -> ... }