flatMap

inline fun <T, R> Provider<T>.flatMap(crossinline transform: (T) -> Provider<R>): Provider<R>(source)

Lazily maps this Provider's value to another Provider of type R.