I added a default parameter to my method signature...
# multiplatform
r
I added a default parameter to my method signature and the iOS side does not compile - I take it its not supported?
Copy code
@Throws(Throwable::class)
    suspend fun getConfig(jwt: String? = null): String {
Any work arounds?
k
Thanks @ephemient. I found this something along the lines: https://github.com/JetBrains/kotlin-native/issues/2122