reduce method
- T combine(
- T,
- T
override
Reduces the elements in the list to a single value using the combine
function.
Implementation
@override
T reduce(T Function(T, T) combine) => _items.reduce(combine);
Reduces the elements in the list to a single value using the combine
function.
@override
T reduce(T Function(T, T) combine) => _items.reduce(combine);