mapList<E> method

List<E> mapList<E>(
  1. E f(
    1. T e
    )
)

Implementation

List<E> mapList<E>(E f(T e)) => this.map(f).toList();