fold<T0> method
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);