lengths property

Stream<int> get lengths

Emits the length of each list rather than the list itself.

Implementation

Stream<int> get lengths => map((items) => items.length);