flatMapItems<R> method

Stream<List<R>> flatMapItems<R>(
  1. Iterable<R> transform(
    1. T
    )
)

Flat-maps each emitted list.

Implementation

Stream<List<R>> flatMapItems<R>(Iterable<R> Function(T) transform) =>
    map((items) => items.expand(transform).toList());