map_ method

List<R> map_(
  1. R mapper(
    1. T
    )
)

In contrast to map, this will return a List instead.

Implementation

List<R> map_(R Function(T) mapper) => map(mapper).toList();