combineList<T> method

void combineList<T>(
  1. ListReducerBuilder<State, StateBuilder, T> other
)

combineList combines this ReducerBuilder with a ListReducerBuilder

Implementation

void combineList<T>(ListReducerBuilder<State, StateBuilder, T> other) {
  _map.addAll(other._map);
}