mapList<R> method
Maps the elements and eagerly materializes them into a List using convert_object.
Implementation
List<R> mapList<R>(
R Function(E e) mapper, {
ElementConverter<R>? converter,
}) => ConvertObjectImpl.toList<R>(
map(mapper),
elementConverter: converter,
debugInfo: {'method': 'IterableConversionX.mapList'},
);