mapToList<T> method Null safety

List<T> mapToList<T>(
  1. List<T> destination,
  2. Transform<E, T> f
)

Transforms elements to objects of type T with the transformer f, and appends the result to the given destination.

Implementation

List<T> mapToList<T>(List<T> destination, Transform<E, T> f) {
  this?.map(f).forEach((e) => destination.add(e));
  return destination;
}