Is there a way to do `parametersOf()` with a nulla...
# koin
c
Is there a way to do
parametersOf()
with a nullable value? I have an optional parameter that is set to null in some cases, but then koin can’t figure out the definition
1
c
I would wrap it in a class and pass that:
Copy code
data class Args(
    val nullableParam: String?
)
Copy code
parametersOf(Args(nullableParam))
c
Yeah that's what I ended up doing! :) thanks
👍🏼 1