onEachSuccess

inline fun <T> ResultFlow<T>.onEachSuccess(crossinline action: suspend (T) -> Unit): ResultFlow<T>

Returns a flow that invokes the given action if it is a success before each value of the upstream flow is emitted downstream.

See also

onEach