map<T> method
- T f(
- E e
override
Returns a new lazy Iterable with elements that are created by calling
f
on each element of this PbListBase
in iteration order.
Implementation
@override
Iterable<T> map<T>(T Function(E e) f) => _wrappedList.map<T>(f);