thenMapEach<R> method
Implementation
ValueStream<Iterable<Future<R>>> thenMapEach<R>(R mapper(X input)) {
return this.mapEach((future) => future.then(mapper));
}
ValueStream<Iterable<Future<R>>> thenMapEach<R>(R mapper(X input)) {
return this.mapEach((future) => future.then(mapper));
}