fold<T0> method
- T0 initialValue,
- T0 combine(
- T0,
- T
override
Accumulates value starting with initialValue
and applying combine
for
each element in order.
Implementation
@override
T0 fold<T0>(T0 initialValue, T0 Function(T0, T) combine) =>
_items.fold(initialValue, combine);