Returns a List of Type by applying the transformation function.
Shorthand for List<T>.map<T>(f).toList();
List<T>.map<T>(f).toList();
List<T> as<T>(T f(E e)) => map<T>(f).toList();