map<U> method

FutureOr<Iterable<U>> map<U>(
  1. U f(
    1. T
    )
)

Implementation

FutureOr<Iterable<U>> map<U>(U Function(T) f) async {
  return (await this).map(f);
}