map<T0> method

  1. @override
Iterable<T0> map<T0>(
  1. T0 f(
    1. T
    )
)
override

Applies the function f to each element in the list and returns a new iterable with elements of type T0.

Implementation

@override
Iterable<T0> map<T0>(T0 Function(T) f) => _items.map(f);