asKotlinLazy

fun <T : Any> Lazy<T>.asKotlinLazy(): Lazy<T>(source)

Converts a Dagger dagger.Lazy into a Kotlin Lazy. This allows interoperability between lazy types defined in different frameworks.

Return

A Lazy that delegates its invocation to the source dagger.Lazy.