Paulina Szklarska
1 min readApr 12, 2019

--

Hi Andrew!

To add more reducers, you can use combineReducers method:

appReducers = combineReducers<AppState>([
someReducers,
otherReducers,
generalReducers,
]);

You’ll use then field appReducers as you’ll use it in the example from article:

store = new Store<List<CartItem>>(
appReducers,
initialState: new List()
);

--

--

Paulina Szklarska
Paulina Szklarska

Written by Paulina Szklarska

Flutter GDE / Flutter & Android Developer / blogger / speaker / cat owner / travel enthusiast

No responses yet