builder<T> method

List<T> builder<T>(
  1. T builder(
    1. E
    )
)

Iterable.map.toList()

Implementation

List<T> builder<T>(T Function(E) builder) =>
    map<T>((E e) => builder(e)).toList();