Something like this: ``` private inline fun &l...
# koin
t
Something like this:
Copy code
private inline fun <reified T> KoinComponent.injectFromCurrentScope(): Lazy<T> = lazy { 
        currentScope().get<T>()
    }