thenMap<R> method

FutureOr<Iterable<R>> thenMap<R>(
  1. R mapper(
    1. T input
    )
)

Implementation

FutureOr<Iterable<R>> thenMap<R>(R mapper(T input)) {
  return this.thenOr((_) {
    return _.map(mapper);
  });
}