reduce method

  1. @override
E reduce(
  1. E combine(
    1. E value,
    2. E element
    )
)
override

Reduces a collection to a single value by iteratively combining elements of the collection using the provided function.

Implementation

@override
E reduce(E Function(E value, E element) combine) =>
    _wrappedList.reduce(combine);