reduce method

  1. @override
T reduce(
  1. T combine(
    1. T,
    2. 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);