flatMapLatestNotNull
inline fun <T, R> Flow<T>.flatMapLatestNotNull(crossinline transform: suspend (value: T) -> Flow<R>?): Flow<R>
Flat map latest not null
Receiver
Flow
Return
Flow
Parameters
transform
SuspendFunction1<@kotlin.ParameterName T, Flow