strongFlatMapNonNull

inline fun <T, R> Provider<T>.strongFlatMapNonNull(crossinline transform: (T) -> Provider<R>?): Provider<R?>

Creates and returns a new Provider that lazily maps to the value of the Provider returned by transform, or null if transform returns null.

transform should be a pure function.