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