reduceOr method

T reduceOr(
  1. T or,
  2. T combine(
    1. T,
    2. T
    )
)

Implementation

T reduceOr(T or, T Function(T, T) combine) {
  if (isEmpty) {
    return or;
  }
  return reduce(combine);
}