mapIndexed<R> method

List<R> mapIndexed<R>(
  1. R mapper(
    1. T item,
    2. int index
    )
)

Implementation

List<R> mapIndexed<R>(R mapper(T item, int index)) {
  int i = 0;
  return [...this.map((item) => mapper(item, i++))];
}