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