Hi all. With K\N this: ```var onStateChanged: ((fr...
# multiplatform
a
Hi all. With K\N this:
Copy code
var onStateChanged: ((from: State, to: State) -> Unit)?
translated to:
Copy code
@property void (^ _Nullable onStateChanged)(State *, State *) __attribute__((swift_name("onStateChanged")));
which makes this function signature problematic to read on iOS. Are there any way to pass/enforce argument name on k\n? PS. I mean that argument names
from
and
to
are ignored during kotlin to swift translation.