How do i call a reified inline method from iOS whe...
# multiplatform
o
How do i call a reified inline method from iOS when using KMM and pass the type param? This is the KMM method.
Copy code
suspend inline fun <reified T> getNetworkDataFor(
    dataMap: HashMap<String, Int>? = null)
this is how it's called from iOS using combine
Copy code
createPublisher(for: repository.getNetworkDataForNative(dataMap: [ConstantsKt.PAGE_NUM:0,ConstantsKt.PAGE_SIZE:10]))