Returns a new lazy Iterable of Type by applying the transformation function.
Short hand for Future<Iterable<T>>.map<T>(f);
Future<Iterable<T>>.map<T>(f);
Future<Iterable<T>> as<T>(T f(E e)) async => (await this).as<T>(f);