combine method

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

combine combines this MiddlewareBuilder with another MiddlewareBuilder for the same type

Implementation

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