combineAbstract method

void combineAbstract(
  1. Map<String, Reducer<State, StateBuilder, dynamic>> other
)

combineAbstract combines this ReducerBuilder with an AbstractReducerBuilder. This function takes the result of AbstractReducerBuilder's .build() function, which is a map. It does not take an AbstractReducerBuilder directly.

Implementation

void combineAbstract(
    Map<String, Reducer<State, StateBuilder, dynamic>> other) {
  _map.addAll(other);
}