christian.steffensen
02/21/2025, 1:03 PMparametersOf()
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 definitionCiaran Sloan
02/22/2025, 8:03 PMdata class Args(
val nullableParam: String?
)
parametersOf(Args(nullableParam))
christian.steffensen
02/22/2025, 8:03 PM