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