thenMap<R> method

ValueStream<Future<R>> thenMap<R>(
  1. R mapper(
    1. X input
    )
)

Implementation

ValueStream<Future<R>> thenMap<R>(R mapper(X input)) {
  return this.map((item) {
    return item.then(mapper);
  });
}