Hey :wave: I am trying to pass `id _Nullable` (res...
# multiplatform
a
Hey 👋 I am trying to pass
id _Nullable
(resolves as
Any?
in Swift) as an argument to a class I've defined in Kotlin. The Kotlin class in this scenario would be
class MyClass(val value: Any?)
. I am seeing "Blocks with non-reference-typed arguments aren't supported". Any tips on how this should be accomplished? 🤔