combine method

void combine(
  1. ReducerBuilder<State, StateBuilder> other
)

combine combines this ReducerBuilder with another ReducerBuilder for the same type

Implementation

void combine(ReducerBuilder<State, StateBuilder> other) {
  _map.addAll(other._map);
}