toIntList method

Stream<List<int>> toIntList()

Copies the int values into a List, see List.of.

Implementation

Stream<List<int>> toIntList() => map((input) => List<int>.of(input));